関数で matlab 関数のルートを使用したいと考えています。
しかし、うまくいきません。その問題を解決する方法がわかりません。
関数は次のとおりです。
function [ roots , poles ] = pr_calc( num , den )
%PR_CALC Summary of this function goes here
% Detailed explanation goes here
poles=roots([den]);
roots=roots([num]);
end
そして、これはエラーメッセージです:
??? At compilation, "roots" was determined to be
a variable and this
variable is uninitialized. "roots" is also a
function name and previous versions of MATLAB
would have called the function.
However, MATLAB 7 forbids the use of the same
name in the same
context as both a function and a variable.
Error in ==> pr_calc at 6
poles=roots([den]);