i have a syntax error in u(3)-u(4)(exp((u(2)u(1)+u(6))))/(u(5))-1) what the error ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
..
1 Commento
Walter Roberson
il 13 Ago 2020
https://www.mathworks.com/matlabcentral/answers/578865-i-have-a-syntax-error-in-u-3-u-4-exp-u-2-u-1-u-6-u-5-1-what-the-error?s_tid=srchtitle is duplicate
Risposte (1)
hosein Javan
il 12 Ago 2020
Modificato: hosein Javan
il 12 Ago 2020
you didn't have product sign"*". also there were bunch of incorrect parantheis. copy and paste should work.
u(3)-u(4)*(exp(u(2)*u(1)+u(6)))/(u(5)-1)
if you are using simulin fcn you can also replace it with this for simplicity and aviod mistakes:
u[3]-u[4]*(exp(u[2]*u[1]+u[6]))/(u[5]-1)
0 Commenti
Vedere anche
Categorie
Scopri di più su Powertrain Blockset in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!