how to do it
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have radius in range 24.94 to 27.30. I want 264 intermediate points. How to do it using matlab
0 Commenti
Risposta accettata
Più risposte (1)
David Sanchez
il 21 Gen 2014
a fastest way than linspace:
ini = 24.94;
last = 27.3;
samples = 264;
x2 = ini:(last-ini)/(samples+1):last;
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical 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!