how to fix the array?

조회 수: 1 (최근 30일)
chabao
chabao 2021년 11월 7일
편집: chabao 2021년 11월 9일
% x is an array and t is also an array of same size
f_up = 100;
f = (-f_up:0.02:f_up);
h = 2*pi*f;
for i = 1:length(h)
B(i) = trapz(t, x.*exp(-j.*w.*t));
end

채택된 답변

VBBV
VBBV 2021년 11월 7일
% x is the 1*476 array and t is also a 1*476 array meaning time
f_up = 100;
x= rand(1,476);
t = x;
f = (-f_up:0.1:f_up);
w = 2*pi*f;
for i = 1:length(w)
Xjw(:,i) = trapz(t, x.*exp(-j.*w(i).*t));
end
plot(Xjw)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by