How to make data of equal array length?
12 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Abderrahim. B
2022-8-31
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!