フィルターのクリア

How do I run a function I downloaded?

3 ビュー (過去 30 日間)
Michael Vaughan
Michael Vaughan 2020 年 9 月 18 日
コメント済み: Michael Vaughan 2020 年 9 月 19 日
So I downloaded this script nsumk to do some cool partition of integers for me: https://www.mathworks.com/matlabcentral/fileexchange/28340-nsumk
When i open it in matlab it appears in the editor window, I think it's like in the place where I would normally write scripts (once I get that advanced, haha!). Anyway, what do I have to do from here to get this functiln nsumk running in my command line?? I've tried typing in numk and stuff like that but can't get it to work.
If you can't tell, i'm a total scrub at this stuff, but i'm very interested!!
Simple explanations appreciated!! Peace out!!!!

回答 (1 件)

Mario Malic
Mario Malic 2020 年 9 月 18 日
編集済み: Mario Malic 2020 年 9 月 18 日
Please see John's comment as it's important.
Place the function in your current folder and call it from command window, or in write it in script.
[m,x] = nsumk(n,k)
  8 件のコメント
Michael Vaughan
Michael Vaughan 2020 年 9 月 19 日
編集済み: Michael Vaughan 2020 年 9 月 19 日
I put:
>> n = 7; k = 4;
[m, x] = nsumk(n, k);
into the command prompt and get this:
Error: File: nsumk.m Line: 11 Column: 53
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error. To
construct matrices, use brackets instead of parentheses.
Thx for being patient with me
Michael Vaughan
Michael Vaughan 2020 年 9 月 19 日
Weird, I went to that line and put a % at the start of it, now the program runs, Thx

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

カテゴリ

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