Effacer les filtres
Effacer les filtres

How to plug in and solve for algebraic equation?

4 vues (au cours des 30 derniers jours)
Meet Koradia
Meet Koradia le 13 Mai 2022
For example this
  2 commentaires
KSSV
KSSV le 13 Mai 2022
You want to solve it for what?
Meet Koradia
Meet Koradia le 13 Mai 2022
t

Connectez-vous pour commenter.

Réponses (2)

KSSV
KSSV le 13 Mai 2022
t = linspace(0,1) ;
z = 15*(1+(4.1*0.064)/1000*(15/150)^(2/3)*t.^(5/3)).^(-3/2) ;
plot(t,z)
  1 commentaire
KSSV
KSSV le 13 Mai 2022
syms z t
eqn = z == 15*(1+(4.1*0.064)/1000*(15/150)^(2/3)*t.^(5/3)).^(-3/2) ;
s = solve(eqn,t)
Warning: Solutions are only valid under certain conditions. To include parameters and conditions in the solution, specify the 'ReturnConditions' value as 'true'.
s = 

Connectez-vous pour commenter.


Sam Chak
Sam Chak le 13 Mai 2022
The idea is to reverse the equality in z, and then isolate t to the left-hand side. You can solve this algebra problem by hand and obtain:

Community Treasure Hunt

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

Start Hunting!

Translated by