How to make data of equal array length?
조회 수: 13 (최근 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!