A basic matlab problem
Mostrar comentarios más antiguos
Hello all,
If I want to create a matrix of for example 9.5 with a specific size i.e. [9.5 9.5 .... 9.5], what should I do?
2 comentarios
Ashok jat
el 18 de Mayo de 2019
x=ones(1,8);
y=9.5*x
Walter Roberson
el 19 de Mayo de 2019
This is the same as Fangjun Jiang's solution.
Respuesta aceptada
Más respuestas (4)
Walter Roberson
el 5 de Sept. de 2011
A = repmat(9.5,3,4);
or
A(1:3,1:4) = 9.5;
1 comentario
Bahareh
el 6 de Sept. de 2011
Bao Le
el 5 de Dic. de 2019
0 votos
x = 9.5.*ones(2,5)
1 comentario
Walter Roberson
el 5 de Dic. de 2019
This is the same as earlier solutions.
Alejandro Ayala
el 5 de Dic. de 2019
0 votos
x = 9.5.*ones(2,5)
1 comentario
Walter Roberson
el 5 de Dic. de 2019
This is the same as earlier solutions.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!