A function to find prime number

2 ビュー (過去 30 日間)
Takashi Fukushima
Takashi Fukushima 2019 年 11 月 13 日
コメント済み: Takashi Fukushima 2019 年 11 月 14 日
Hello,
I wrote a function to find a prime number and would like to run it to find all prime numbers up to 100 from my starting point. However, I get an error saying "too many output arguments".
Here is what I have...
function isPrime(number)
tf=isprime(number);
if tf==true
disp(number)
end
end
starting_point=input("Enter your number: ");
while starting_point<100
disp(isPrime(starting_point))
starting_point=starting_point+1;
end
I would really appreciate if anyone can help me with this problem....

採用された回答

James Tursa
James Tursa 2019 年 11 月 13 日
編集済み: James Tursa 2019 年 11 月 13 日
Your function doesn't return anything, so when you try to use its output you get an error. Change this:
function isPrime(number)
to this
function tf = isPrime(number)
  3 件のコメント
James Tursa
James Tursa 2019 年 11 月 14 日
Put a semi-colon at the end of the assignment line to suppress the output:
result=isPrime(number);
Takashi Fukushima
Takashi Fukushima 2019 年 11 月 14 日
Thank you so much! I made it!

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

その他の回答 (1 件)

John D'Errico
John D'Errico 2019 年 11 月 13 日
Hey, you wrote some code! Credit for that. :-)
But what did you do?
function isPrime(number)
tf=isprime(number);
if tf==true
disp(number)
end
end
This function has NO outputs! None at all. It dumps somethign to the command window, but that is all. It does NOT return a result.
But then, how do you use it?
disp(isPrime(starting_point))
you use it, expecting an output.
What was the error message?
"too many output arguments"
So you wrote a function that returns no arguments, but then you used it expecting an output argument. Therein lies the problem. The fact is however, you are not using any output from isPrime, and it already dumps a comment to the command window.
Just change the code you use to this:
starting_point=input("Enter your number: ");
while starting_point<100
isPrime(starting_point)
starting_point=starting_point+1;
end
  1 件のコメント
Takashi Fukushima
Takashi Fukushima 2019 年 11 月 13 日
Thank you so much for your answer.
I think that it's the simplest and the most beautiful code for this problem.
Also, I made some progress which you can see above on James's comment although I still have a problem there...

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by