フィルターのクリア

The command is working perfectly in the command window but not as a script

13 ビュー (過去 30 日間)
ToTo
ToTo 2013 年 10 月 16 日
コメント済み: dpb 2013 年 10 月 19 日
Hi all,
I try to run this script:
[t y] = rk4sys(@lorenz,[0 20],[5 5 5],0.03125);
plot(t,y)
plot(y(:,1), y(:,2)), xlabel('x'), ylabel('y')
plot(y(:,1), y(:,3)), xlabel('x'), ylabel('z')
plot(y(:,2), y(:,3)), xlabel('y'), ylabel('z')
Where the called function lorenz is:
function [ yp ] = lorenz( t,y )
yp = [-10*y(1)+10*y(2);28*y(1)-y(2)-y(2)*y(3);-(8/3)*y(3)+y(1)*y(2)];
end
it gives error:
Error in ==> lorenz at 3
yp = [-10*y(1)+10*y(2);28*y(1)-y(2)-y(2)*y(3);-(8/3)*y(3)+y(1)*y(2)];
However, when i copy that script in the command window it works.
  15 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 10 月 17 日
Keep going?
ToTo
ToTo 2013 年 10 月 18 日
i mean iwill keep going with my work in MatLab. Thank You all

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

回答 (1 件)

Yannick
Yannick 2013 年 10 月 17 日
Just to close the loop on this, the bottom line is that MATLAB file names, just like MATLAB variable or function names, can only contain letters (both lower- and upper-case), digits and underscores. Additionally, they must start with a letter (i.e., cannot start with a digit or an underscore).
In particular, spaces and dashes (-) are not valid characters in function, script and variable names.
  5 件のコメント
Daniel Shub
Daniel Shub 2013 年 10 月 19 日
@dpb While I am not aware of any "magic" filenames putting files in directories that start with @ or + can cause very unexpected behavior.
dpb
dpb 2013 年 10 月 19 日
Not sure what that has to do with the proper description of allowable m-file naming though???

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

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by