"Invalid use of operator."
Ältere Kommentare anzeigen
¿Por qué me aparece el tipo de error "Invalid use of operator." al introducir la expresión Z=5*X.^2+5*Y.^2-X.*Y.-11*X+11*Y.+11 para generar gráficas de contorno? Muchas Gracia
Antworten (1)
if you want to perform element-by-element calculations with vectors, you should use a dot (.) before any multiplication (*), division (/), or power (^) operators that involve vectors. but not for addition, subtraction. that's why its showing error.
X=[5,7,8] ; % anyvalue
Y=[7,3,2]; % anyvalue
Z=5*X.^2+5*Y.^2-X.*Y-11*X+11*Y+11
Kategorien
Mehr zu Contour Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!