Create array with same number
Mostra commenti meno recenti
I have this command z=ones(length(x),1) If I want to change (ones) with 2 or 3 what I should do?
Risposta accettata
Più risposte (2)
José-Luis
il 10 Ago 2017
twos = 2.* ones(length(x),1)
3 Commenti
Fadal Sasse
il 10 Ago 2017
José-Luis
il 10 Ago 2017
Please accept the answer that best solves your problem.
PY SUN
il 14 Set 2018
Thanks
Drue
il 22 Feb 2023
To create arrays with the same number I'd personally just set a variable and put it in the linspace function
x = 3
poof = input('how many columns of this number do you want?')
linspace(x,x,poof)
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!