how to simplify this equation?
1 回表示 (過去 30 日間)
古いコメントを表示
Any one please help me with this
How to simplify this
D= 93^(1/2)*(a^2)^(1/2)
as ==>> 9.643a
0 件のコメント
回答 (1 件)
Ameer Hamza
2020 年 11 月 4 日
If you have symbolic toolbox
syms a
assume(a > 0)
D = 93^(1/2)*(a^2)^(1/2);
y = vpa(D, 4)
Result
>> y
y =
9.644*a
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!