Unexpected Matlab Expression ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Natalie Brehaut
il 11 Set 2017
Commentato: Jose Marques
il 11 Set 2017
I am new to coding and am unsure why my code does not work it says "Unexpected MATLAB expression" for the 3 in my code.
This is my code E(x)= [-1 1] 3 . * exp (1) . ^ ((-x)./4)
Any help is appreciated
4 Commenti
Risposta accettata
Jose Marques
il 11 Set 2017
Natalie, try this:
E= [-1 1] * 3 *( exp (1) .^ ((-x)/4))
E will be a matrix 1x2 that first element is positive value and second will be the negative value
7 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!