"Invalid use of operator."
Mostrar comentarios más antiguos
¿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
Respuestas (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
Categorías
Más información sobre Contour Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!