How to create a long list using the same number?
7 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Azzi Abdelmalek
on 23 Jul 2014
Edited: Azzi Abdelmalek
on 23 Jul 2014
repmat(59,1000,1)
%or
59*ones(1000,1)
0 Comments
More Answers (0)
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!