Hi, I have an error not enough input arguments. And I have no idea what kind of input parameters should be assign for the following function.
function measure(old,handles)
And I'm getting the following error:
Not enough input arguments.
Error in measure (line 11) varnames = old.allVarNames';
can any one of you please help me how to solve this.

6 Kommentare

Adam
Adam am 24 Okt. 2018
Bearbeitet: Adam am 24 Okt. 2018
It looks like some arbitrary function of your own or what someone gave you. All we can tell you is what you seem to already know. You need to pass in arguments for old and handles. If there is no indication in the function as to what those should be then unfortunately you have bad code to work with and will have to try to work it out or abandon the code.
Judging by the error message, old is expected to be a struct so goodness knows what fields it is expected to have, it could be anything. The fact it has a field called 'allVarNames' is in itself not an encouraging thought as to what it should hold. handles sounds like it would come from a GUI, but again, who knows?
KSSV
KSSV am 24 Okt. 2018
What is function measure ???
sri Jagarlmudi
sri Jagarlmudi am 24 Okt. 2018
function [ readings, VarChannels , Uniplot_channel_info, new] = measure(old,handles)
Adam
Adam am 24 Okt. 2018
Where is it from? I assume it isn't your own function else you'd know what its arguments should be.
sri Jagarlmudi
sri Jagarlmudi am 24 Okt. 2018
Yes, it was not my own function. I'm trying to write matlab unit test function for this code. For that I need to clear the errors in this function.
Adam
Adam am 24 Okt. 2018
You need to ask whoever you got it from in that case.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Startup and Shutdown finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 24 Okt. 2018

Kommentiert:

am 24 Okt. 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by