Is there a function to make a long list of a single value?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
David Haydock
il 24 Mag 2022
Commentato: Star Strider
il 24 Mag 2022
I.e. if I want to make a list 400 values long of all 1's, I would use
ones(400,1)
But what if I wanted to make a list of say, 5's?
Is there a function I can use to do this without using a for loop?
0 Commenti
Risposta accettata
Star Strider
il 24 Mag 2022
Try this —
Fives = 5*ones(400,1)
.
2 Commenti
Star Strider
il 24 Mag 2022
Thank you!
I’m certain you would have in a few minutes. (I’ve been doing this for a while.)
Another option —
Fives = 5+zeros(400,1)
.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!