how to make a function - keep getting errors
2 ビュー (過去 30 日間)
古いコメントを表示
I need to make a function of some calculation steps that I made. the steps I have are=
f=input('frame number');
origin=(LE(:,f)+ME(:,f))/2;
Y=(FH(:,f)-origin)/norm(FH(:,f)-origin);
ztemp=(ME(:,f)-LE(:,f))/norm(ME(:,f)-LE(:,f));
x=cross(Y,ztemp);
X=x/norm(x);
z=cross(X,Y);
Z=z/norm(z);
R=[X Y Z]
end
now I need to make this in a function, what I did was :
f=input('frame number');
[X,Y,Z]=myfunction(f)
R=[X Y Z]
and then a file named myfunction
function [X,Y,Z]=myfunction(f)
origin=(LE(:,f)+ME(:,f))/2;
Y=(FH(:,f)-origin)/norm(FH(:,f)-origin);
ztemp=(ME(:,f)-LE(:,f))/norm(ME(:,f)-LE(:,f));
x=cross(Y,ztemp);
X=x/norm(x);
z=cross(X,Y);
Z=z/norm(z);
end
it refuses to work however and I get the errors= - Output argument "X" (and maybe others) not assigned during call to and -Error: Illegal use of reserved keyword "end".
what do I need to do ?
3 件のコメント
採用された回答
N
2014 年 2 月 17 日
2 件のコメント
Wayne King
2014 年 2 月 17 日
The problem is when you transform it into a function and try to call the function from the command line, the function will not know what those variables are. It is not sufficient that they exist in the MATLAB workspace.
その他の回答 (3 件)
William
2014 年 2 月 17 日
MATLAB is case sensitive, it looks like you have a lower case x and an upper case 'X' in your code. if they mean the same thing they have to be the same case
post your code as such
if true
Myfunction = X etc
end
0 件のコメント
Wayne King
2014 年 2 月 17 日
How is your function supposed to know what LE() and ME() are for starters? Or FH()?
You do not provide those arrays as input arguments to the function.
How are you attempting to the use the function, did you save it in a folder on the MATLAB path as myfunction.m?
0 件のコメント
Image Analyst
2014 年 2 月 17 日
Are these all in one m-file, or in 3 separate m-files? If the first one is a script, you can't have an end at the end, it doesn't make sense. If they're all in one file, you need "function" keyword to declare each function, and you don't need "end"s but if you choose to use one then I think you need to use it for all of the functions in the m-file. You can't have a script followed by a function in the same file.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!