¿Como puedo multiplicar estas matrices?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
la matriz y es una matriz de 1x192016 double, como puedo hacer esta multiplicación sin que me de un error?
div=[7, 13, 19, 25, 31, 37, 43];
y1=y.*(0:div(1))
0 comentarios
Respuestas (1)
Bhanu Prakash
el 17 de Oct. de 2023
Hi Pablo,
I understand that you want to multiply two matrices without getting any error.
To perform element wise multiplication on any given two matrices, their indexes must be same or be compatible. For more information on the compatibility of the matrices, refer to the following documentation:
In your case, the sizes of the matrix ‘y’ and ‘z’ are (1x192016) and (1x8) respectively making the sizes incompatible. To avoid the error, make sure that the array sizes are same or compatible as mentioned in the above documentation.
For more information on the matrix multiplication, refer to the following documentation:
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!