我的功能絕對有效;它已經過測試,並且一度被認可。爲什麼Matlab不能看到我的功能?
這裏的函數原型:
function [X Y] = calculateEllipse(x, y, a, b, angle)
%# Code here
end
下面是我從MATLAB終端進行呼叫:
calculateEllipse (612, 391, 107, 60, 331)
這裏飛出錯誤我:
??? Undefined function or method 'calculateEllipse' for input arguments of
type 'double'.
現在,我100%的肯定,我在同一個目錄中的功能。我甚至用過
addpath('C:\path-to-function')
確認。這只是不工作,我感到困惑。
任何幫助表示讚賞。
你的函數文件叫calculateEllipse.m嗎? – Jeff
找到使用'which calculateEllipse'調用的函數。有關更多詳細信息,請參閱[哪個](http://www.mathworks.ch/help/techdoc/ref/which.html)。 – zellus
一定要接受一些答案,它可以幫助人們查看問題! –