¿Como puedo multiplicar estas matrices?

4 views (last 30 days)
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))

Answers (1)

Bhanu Prakash Reddy
Bhanu Prakash Reddy on 17 Oct 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:

Tags

Community Treasure Hunt

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

Start Hunting!