fill row of matrix
31 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
yousef Yousef
el 9 de Abr. de 2014
Comentada: Ayesha Punjabi
el 16 de Abr. de 2019
Assume I have d=[1 3 5 6 7 8 1 4 5 10], and e=zeros(5,10). I want to take only the first 4 elements of d and put them into the first row of e.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 9 de Abr. de 2014
d=[1 3 5 6 7 8 1 4 5 10],
e=zeros(5,10)
e(1,1:4)=d(1:4)
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!