Borrar filtros
Borrar filtros

I have a question about for loop

1 visualización (últimos 30 días)
Sudharsan Srinivasan
Sudharsan Srinivasan el 17 de Jul. de 2017
Comentada: Sudharsan Srinivasan el 17 de Jul. de 2017
Lets say a = [1,2,3....35] and b = [1,2,3...35]. The size of both the vectors are same i.e. 1 by 35. I have another matrix say R = [1 2 ; 3 4] whose size is 2 by 2. I wanted to do matrix multiplication as follows, c = R * [a(i);b(j)], where i and j are the total length of the vectors a and b respectively. I wanted to print the value of c (whose size is 1 by 2) for example c(1) = R * (a(1);b(1)) and c(2) = R * (a(2);b(2)) etc., till c(35). Each time i get the value of c, I have to compute x and y as follows,
[x;y] = [e;f] + c. Here e and f is again a 1 by 2 vector.
Finally I should have a 1 by 35 vector for x and y each.
How can I code this ?

Respuestas (1)

Jan
Jan el 17 de Jul. de 2017
Editada: Jan el 17 de Jul. de 2017
What about:
xy = [e;f] + R * [a;b] % >= Matlab R2016b
? With older versions:
xy = bsxfun(@plus, [e;f], R * [a;b])
Now x is the first row, y the second one.
  1 comentario
Sudharsan Srinivasan
Sudharsan Srinivasan el 17 de Jul. de 2017
Hello Mr. Jan Simon,
Thank you for your answer. I in fact did the same thing what you have mentioned. I was wondering if I can print x and y separately instead of defining a single variable xy.
Thanks a million for your time.
Sudharsan.

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by