Error using * Inner matrix dimensions must agree
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
ding xian zhi
il 19 Mar 2017
Modificato: per isakson
il 19 Mar 2017
y=cos(x).*[0.5+(3*sin(x))./(1+x*x)]
Error using *
Inner matrix dimensions must agree.
I want to know where is the problem could anyone help me thx
0 Commenti
Risposta accettata
GEEVARGHESE TITUS
il 19 Mar 2017
In the last part of the relation you are trying to do x*x, which is not possible. You should either use a dot operator or you need to transpose one of the x.
x=1:10;
y1=cos(x).*[0.5+(3*sin(x))./(1+x.*x)]
y2=cos(x).*[0.5+(3*sin(x))./(1+x*x')]
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements 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!