How to make data of equal array length?
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nisar Ahmed
il 31 Ago 2022
Commentato: Abderrahim. B
il 31 Ago 2022
Hi,
I have following data and how I can make FD and AD of equal size of N?
FD = 0:0.225399;
AD = 0:0.004045;
N = 1:1:115;
0 Commenti
Risposta accettata
Abderrahim. B
il 31 Ago 2022
Hi!
Try this:
N = 1:1:115 ;
size(N)
nL = length(N) ;
FD = linspace(0,0.225399, nL) ;
size(FD)
AD = linspace( 0, 0.004045, nL) ;
size(AD)
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrices and Arrays 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!