フィルターのクリア

How do I plot this series?

3 ビュー (過去 30 日間)
Niloufar
Niloufar 2022 年 10 月 27 日
編集済み: KALYAN ACHARJYA 2022 年 10 月 27 日
close all;clear;clc; t = linspace(-5,5,1000); %ylim([-0.01 0.01]); N = 1000; syms n t; an = (100*n*pi*(-1).^(n+1).*(1000-121*n.*n*pi*pi))/((1000-121*n.*n*pi*pi)^2 + (1320*n*pi)^2)*(50*n*pi); bn = (100*n*pi*(-1)^(n+1)*(1320*n*pi))/((1000-121*n.*n*pi*pi)^2 + (1320*n*pi)^2)*(50*n*pi); f = symsum(an.*cos(100*n*pi*t) + bn.*sin(100*n*pi*t),n,1,Inf); fplot(f); //I want to plot this series but it doesn't work what is the problem?

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2022 年 10 月 27 日
編集済み: KALYAN ACHARJYA 2022 年 10 月 27 日
Change the upper bound value to any finite number
f = symsum(an.*cos(100*n*pi*t) + bn.*sin(100*n*pi*t),n,1,100);
%.........................................................^ any
%Try fplot same as code

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by