Not enough input arguments.

14 ビュー (過去 30 日間)
Air Roland Dela Cruz
Air Roland Dela Cruz 2021 年 5 月 9 日
編集済み: per isakson 2021 年 5 月 9 日
Why do I get an error when create the M-File "Lorenz" with the following input:
function xprime = Lorenz(t,x);
%LORENZ: Computes the derivatives involved in solving the Lorenz equations
sig = 10;
beta = 8/3;
rho=28;
xprime=[-sig*x(1) + sig*x(2);rho*x(1)-x(2)-x(1)*x(3);-beta*x(3) +x(1)*x(2)];
The error says:
Error in Lorenz (line 6)
xprime=[-sig*x(1) + sig*x(2);rho*x(1)-x(2)-x(1)*x(3);-beta*x(3) +x(1)*x(2)];
  1 件のコメント
per isakson
per isakson 2021 年 5 月 9 日
編集済み: per isakson 2021 年 5 月 9 日
I get the error (R2018b)
Error using vertcat
Dimensions of arrays being concatenated are not consistent.
Error in Untitled2>Lorenz (line 11)
xprime=[-sig*x(1) + sig*x(2); rho*x(1)-x(2)-x(1)*x(3); -beta*x(3) +x(1)*x(2)];
Error in Untitled2 (line 4)
xprime = Lorenz( t, x );
I cannot see that this statement (Lorenz (line 6)) could throw the error "Not enough input arguments."
Show your full error message.

サインインしてコメントする。

採用された回答

per isakson
per isakson 2021 年 5 月 9 日
編集済み: per isakson 2021 年 5 月 9 日
You need to call the function, Lorenz, with two input arguments: t and x. E.g.
%%
x = (1:6);
t = nan;
xprime = Lorenz( t, x )
In your case the variable, x, is not defined in the workspace of Lorenz. Thus, the expression cannot be evaluated. Don't ask me why the error message isn't more informative.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by