フィルターのクリア

Getting a function I downloaded online to run

1 回表示 (過去 30 日間)
Michael Vaughan
Michael Vaughan 2020 年 9 月 19 日
コメント済み: John D'Errico 2020 年 9 月 20 日
Hey guys, I'm extremly new to programming, so be patient with me!
and put it in a certain folder on my desktop, then used the addpath tool to add a path to this folder. I opened up the file in MatLab and the script appeared in an "editor window".
Now, if I type in intpartition(4) the output should be {[1 1 1 1],[1 1 2],[1 3],[2 2],4}
But instead it's saying
Undefined function or variable 'intpartition'.
What is the problem here? Did the addpath not work correctly? I find this strange because I got another program, nsumk, to run just fine, and they are in the same folder.
Thanks!

回答 (1 件)

Star Strider
Star Strider 2020 年 9 月 19 日
First, use dir on the folder to be certain it actually appears there.
Second, see what:
which('intpartition.m')
returns.
  4 件のコメント
Star Strider
Star Strider 2020 年 9 月 19 日
Run the path command from a script or the Command Window. It will tell you if those directories are part of the path. Your user file path components will be at the end of that list. (At least that applies to R2020b.)
John D'Errico
John D'Errico 2020 年 9 月 20 日
If you added the folders using addpath, verify you did it properly. path will tell you that. And then, make sure you SAVED the path, so it will be there next time.

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by