Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

I am getting an error when i run my code. code and error is below thank you

1 visualización (últimos 30 días)
alexis cordova
alexis cordova el 31 de Oct. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
cp5ques.PNG

Respuestas (1)

Walter Roberson
Walter Roberson el 31 de Oct. de 2019
You have the form
[A +B;
C - D]
The bottom row of that is a binary operation between two scalar values, and gives a scalar result. The bottom row is scalar.
The top row is two scalar expressions, one of which happens to be preceeded by unary plus. Just like [3 -5] is the pair (3, -5), [3 +5] is the pair (3,+5). The top row is a vector of two values.
To solve the problem you can either code A+B with no space, or you can code A + B with space after the +

La pregunta está cerrada.

Productos


Versión

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by