How to create a long list using the same number?

26 views (last 30 days)
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

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 23 Jul 2014
Edited: Azzi Abdelmalek on 23 Jul 2014
repmat(59,1000,1)
%or
59*ones(1000,1)

More Answers (0)

Categories

Find more on Multidimensional Arrays 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!