필터 지우기
필터 지우기

i dont know that warning massage . Please help me as soon as posible

조회 수: 2 (최근 30일)
Yunus
Yunus 2014년 2월 15일
댓글: Walter Roberson 2014년 3월 9일
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".

채택된 답변

Image Analyst
Image Analyst 2014년 2월 15일
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;

추가 답변 (3개)

per isakson
per isakson 2014년 2월 15일
편집: per isakson 2014년 2월 15일

Wayne King
Wayne King 2014년 2월 15일
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)

Yunus
Yunus 2014년 2월 16일
thank you for helping i solved the problem . have good days.

카테고리

Help CenterFile Exchange에서 Special Functions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by