フィルターのクリア

why can't my 2nd output argument in my function return any value?

1 回表示 (過去 30 日間)
Natalia Wong
Natalia Wong 2015 年 12 月 4 日
コメント済み: Star Strider 2015 年 12 月 5 日
Hi, I 'm trying to create a function that calculates the root from the the quadratic eqn. i need to display the two roots separately but why does my second root, k not appear from the output.argument. thanks i am new to matlab

採用された回答

Star Strider
Star Strider 2015 年 12 月 4 日
You have to ask it specifically for as many outputs as you want it to return. By default, if you only ask it for one, it will only return the first. This call returns all of them:
a = 2;
b = 5;
c = 10;
[j,k,group]=quadratic_roots(a,b,c)
Also, I would change:
group='non-equal complex valued roots'
to:
group='complex-conjugate roots'
  11 件のコメント
Star Strider
Star Strider 2015 年 12 月 5 日
@Natalia — If my Answer solved your problem, please Accept it.
@Walter — Thank you.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by