I'm using Matlab 7.0. How can I call a function? "File/New/Function" is missing.
이전 댓글 표시

Or should I write an .m file instead beginning with:
function F = magic(x)
...
end
?
채택된 답변
추가 답변 (3개)
Zoltán Csáti
2014년 10월 25일
The syntax of writing a function is what you have written. When you want to call it, do
out = magic(in)
Be careful though, magic is a function that already exists.
Zoltán Csáti
2014년 10월 25일
1 개 추천
Not a problem. It is just a help for you so that MATLAB creates a sample in advance. I never use this feature because it is not cumbersome to type function.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!