Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Why does y come out as one number?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I put x as a variable but y comes out as one number whats wrong?
0 comentarios
Respuestas (2)
Roger Stafford
el 29 de Mzo. de 2018
Editada: Roger Stafford
el 29 de Mzo. de 2018
The scalar result is caused by the use of matrix division rather than element-by-element division. Replace '/' by './'. Similarly replace '^2' by '.^2' .
2 comentarios
Roger Stafford
el 29 de Mzo. de 2018
It looks as if the dot in front of the asterisk in ".^2.*1.79" is being mistaken for a decimal point after the 2. Try putting parentheses around the 2: ".^(2).*1.79"
madhan ravi
el 7 de Jul. de 2018
You put x as numerical Data.
If you want to get result in terms of x then x has to be defined as a symbolic variable. i.e.,
syms x
This would give you the desired result.
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!