필터 지우기
필터 지우기

Plotting symbolic equation along an array.

조회 수: 3 (최근 30일)
Dillon Trimmell
Dillon Trimmell 2022년 10월 17일
답변: Torsten 2022년 10월 17일
I am trying to plot the symbolic function:
I have expressed the function using syms for f(x),x,n
the trouble I am having is with x, x is a value from 0<x<L. where L is a arbitrary number. 100 for example.
how would I plot 0:L on the x axis and the function of f(x) on the y axis. for each n.
thank you for the help.
heres what I got so far with my script

답변 (1개)

Torsten
Torsten 2022년 10월 17일
Is the really the function you calculated the Fourier series of ?
L = 10;
nx = 100;
nmax = 200;
x = (linspace(0,L,nx)).';
n = 1:nmax;
f = ((-1).^n-1)./(n.^2*pi) .* cos(n.*x) + (1-2*(-1).^n)./n .* sin(n.*x);
values = -pi/4 + sum(f,2);
plot(x,values)

카테고리

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

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by