How to create a long list using the same number?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shane
el 23 de Jul. de 2014
Editada: Azzi Abdelmalek
el 23 de Jul. de 2014
Simple question but can't find it anywhere. I need to make a long list of the number say, 59, a thousand times.
59
59
59
59 etc
What is the syntax to do this? Thanks
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 23 de Jul. de 2014
Editada: Azzi Abdelmalek
el 23 de Jul. de 2014
repmat(59,1000,1)
%or
59*ones(1000,1)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!