Completing elements of a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Karanvir singh Sohal
el 1 de Mzo. de 2021
Comentada: Jan
el 5 de Mzo. de 2021
I have a matrix a
from a I have generated a new matrix b which have 2 new elements for 1 element of a
a = [2;3]
[m,n]=size(a)
for i=1:m
b=[1.5*(a(i)) 2*(a(i))]
end
I want to generate a new matrix 'c' such that it includes all the sets
expected results as
c = [2 3;2 4;3 4.5;3 6]
2 comentarios
Respuesta aceptada
Karanvir singh Sohal
el 3 de Mzo. de 2021
3 comentarios
Jan
el 5 de Mzo. de 2021
These lines do the same as your loop:
for j=1:mY
index=index+1;
XD(index)=X(i);
YD(index)=Y(j);
end
but more efficiently.
Más respuestas (1)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!