필터 지우기
필터 지우기

I am trying to make these 3 plots

조회 수: 1 (최근 30일)
Mr.DDWW
Mr.DDWW 2022년 3월 4일
댓글: Walter Roberson 2022년 3월 4일
if you see eqution 12.1-31, I made a Matlab code to genterte the figure 12.1-1. I tried but not correct
here is my code
clc;clear all;
n=100000;
alphat=1;
y_b=linspace(0,1);
% y_b=.1
for j=1:length(y_b)
sum_D=0;
for i=1:n
sum_D=sum_D+(((-1)^(i-1))/(((i-1)+0.5)*pi))*exp(-((i-1)+0.5)^2*pi^2*alphat)*cos((i-1)+0.5)*pi*y_b(j);
end
F(j)=2*sum_D;
end
plot(y_b,F);grid on;

답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by