Error using round every time can anyone please help me with this?

4 ビュー (過去 30 日間)
Raj Arora
Raj Arora 2021 年 4 月 20 日
コメント済み: Raj Arora 2021 年 4 月 21 日
c= 1;
n = 0.025;
bw = 36;
angle = 60;
syms x
tw = simplify(bw + 2*(x * tand(angle)));
A = 0.5*(bw + simplify(tw))*x;
P = simplify(bw + 4*x);
%%2* simplify(sqrt((x^2)+((x*tand(angle))^2)))
S = 0.00001;
Q = 347.9;
syms brand height
brand = ((c/n)*((A^1.666)/(P^0.666))*(S^0.5)) == Q
height = vpasolve(brand, x)
stage = round(height,4); %%%LINE 18%%
ITS SHOWING TOO MANY INPUT ARGUMENT WHY SO?
OUTPUT
Error using sym/round
Too many input arguments.
Error in Untitled2 (line 18)
stage = round(height,4)

採用された回答

Star Strider
Star Strider 2021 年 4 月 20 日
Convert ‘height’ to double first:
stage = round(double(height),4) %%%LINE 18%%
.
  2 件のコメント
Raj Arora
Raj Arora 2021 年 4 月 20 日
thanks start strider.
Star Strider
Star Strider 2021 年 4 月 20 日
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

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

その他の回答 (1 件)

Steven Lord
Steven Lord 2021 年 4 月 20 日
The round function for symbolic expressions does not accept the input argument N (the number of digits to which to round) like the round function for numeric arrays does. If you convert your height variable to double then you can call round to round the number to 4 places.

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by