How to solve this undefined problem?

9 ビュー (過去 30 日間)
Daniel Chew
Daniel Chew 2022 年 3 月 21 日
コメント済み: Matt J 2022 年 3 月 21 日
Now im facing
Error: Undefined function or variable n
the value n is actually i get it from the other file that prompt user to enter num of patients
n = input('Enter number of patients : ');
both files are located in the same file and the matlab is also opening the current file that located both files named start.
I also have try adding
n = p;
in the choiceThree file for trying to use a variable that has not been defined before this line of code executes. But the ouput still show out
Error: Undefined function or variable p
By the way, both files i got write
function output = start
in start file and
function output = choiceThree(n);
in choiceThree file
  1 件のコメント
Matt J
Matt J 2022 年 3 月 21 日
We need to see the innards of both functions to really know what's wrong.

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

回答 (1 件)

Matt J
Matt J 2022 年 3 月 21 日
I also have try adding n = p
The error message says that p is undefined. Therefore, you should be doing p=n.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by