how to simplify this equation?
Ältere Kommentare anzeigen
Any one please help me with this
How to simplify this
D= 93^(1/2)*(a^2)^(1/2)
as ==>> 9.643a
Antworten (1)
Ameer Hamza
am 4 Nov. 2020
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
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!