i dont know that warning massage . Please help me as soon as posible
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Yunus
il 15 Feb 2014
Commentato: Walter Roberson
il 9 Mar 2014
Error in parfind (line 2) [f1,f2] = size(fonk);
Output argument "parpos" (and maybe others) not assigned during call to "C:\Users\yunus\Desktop\15.02.2014\parfind.m>parfind".
2 Commenti
Jan
il 15 Feb 2014
I recommend to avoid "as soon as possible", because it sounds less polite than apropriate.
Risposta accettata
Image Analyst
il 15 Feb 2014
I agree with per that your "as soon as possible" request is in direct contradiction with what you've supplied us with. You should try to make it easy to help you, not hard. Why don't you read this:
But anyway, it appears that you have a function parfind() that looks something like this
function parpos = parfind(someInput)
and in that function, you never assign parpos. Is it perhaps in an if statement that you never step into? Why don't you have this as the first statement in your function, just to be sure it has some value:
parpos = 0;
0 Commenti
Più risposte (3)
per isakson
il 15 Feb 2014
Modificato: per isakson
il 15 Feb 2014
- Did you write the function, parfind? Your search - parfind - did not match any documents.
- You might want to learn about debugging
- Your question doesn't provide information enough to say more than the messages already say
- If "as soon as possible" you should really put more effort into the question
0 Commenti
Wayne King
il 15 Feb 2014
It means that the function parfind.m has an output argument in its function signature called parpos and that is not being computed.
Are you giving us all the error messages, it looks like you are having a problem on line 2 with
size(fonk)
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!