make a vector from one value
53 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Lev Mihailov
il 21 Lug 2020
Modificato: Bruno Luong
il 21 Lug 2020
hello! I have values 0.421, I need to make a vector of 1200 values of the same from it without a loop
% I need to do without a loop x=[0.421 0.421 0.421 0.421 ...]
0 Commenti
Risposta accettata
Bruno Luong
il 21 Lug 2020
Modificato: Bruno Luong
il 21 Lug 2020
One way (among many)
x = 0.421 + zeros(1,1200)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!