I have been working on this code. But it's kept showing me this error. Please help me

2 ビュー (過去 30 日間)
A = [1 0; -1 3];
n = numposel(A)
function res = numposel(A)
[rows, cols] = size(A);
res = 0;
for i=1:rows
for j =1:cols
if (A(i,j)>0)
res=res+1;
end
end
end
end
Unrecognized function or variable 'numposel'.

採用された回答

the cyclist
the cyclist 2021 年 10 月 17 日
How are you trying to run that code?
If you just try to run those lines from the Command Window, it will give that error. The reason is that it will try to call the function before it has been defined.
If you put all of that code into an M-file, and then execute the code, it will work.
  3 件のコメント
the cyclist
the cyclist 2021 年 10 月 17 日
I don't have any experience with MATLAB Grader.
But, you don't really need to define that function, right? It is easy to make that code work directly, without using a function.
Walter Roberson
Walter Roberson 2021 年 10 月 17 日
MATLAB Grader expects a file, if I recall correctly.
And if not, then you can copy and paste all the lines into the MATLAB Grader window. Grader is able to accept "scripts" that include function definitions.

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

その他の回答 (1 件)

Cris LaPierre
Cris LaPierre 2021 年 10 月 18 日
You likely just need to enter the function code into MATLAB Grader

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by