How do I create a user defined function using the fourier series?
13 次查看(过去 30 天)
显示 更早的评论
I am supposed to create a user defined function using the Fourier series function that will do the following: (1) accept input variables c, L, N, and vecx (2) approximate the step function f(x), according to the Fourier series, over the set range of x values and (3) return an output for f(x) evaluated at each value of x. What I am thinking is that I need to use nested loops but I have no idea how to start. This is what I have so far:
function myoutput = mystep( c, L, N, vecx)
lengthx = length(vecx)
fxvec = zeros(1, lengthx)
while vecx >= 0 && vecx <= 2L
f(x) = (c/L) + ((2/pi).*(((-1^N)/N)*sin((N*pi*c)/L)*cos((N*pi*vecx)/L)))
end
Am I correct so far or do I need to use for loops or while loops to make the Fourier series work?
采纳的回答
Abraham Boayue
2018-3-27
I would recommend a for loop to solve this problem. Try something like this :
function fx = fseries(c,N,x0,x1)
% All the inputs are
% constants
% x0 and x1 are the start and values of
% x, N is the length of x;it should be
% large eniugh; say N= 100 for example.
L = x1-x0; % period of f(x)
deltax = (x1-x0)/(N-1);
x = x0:deltax:x1;% better to create
% the vector this way than to input it.
F = zeros(1,N);
a0 = c/L; % since a0 is a constant,
% no need to have in in the for loop.
for n = 1:N
an = 2/pi*(-1)^n*sin(n*pi*c/L)
F = an*cos(n*pi*x/L);
end
F = a0+F;
% your function is an odd function
% since bn = 0.
plot(x,F,'linewidth',2)
a = title('f(x)');
set(a,'fontsize',12);
a = xlabel('x');
set(a,'fontsize',12);
a = ylabel('y');
set(a,'fontsize',12);
end
更多回答(2 个)
Abraham Boayue
2018-3-28
I made a little error, here is the correction. Replace the expression for F with the following line.
F = F + an*cos(n*pi*x/L);
I am simply performing the summation in the equation of the Fourier series. Check this link to a solution that I made for someone, you can improve your function by following the code. https://www.mathworks.com/matlabcentral/answers/388949-how-can-i-perform-a-fourier-series-on-this-function
Abraham Boayue
2018-3-28
编辑:Abraham Boayue
2018-3-28
Your function wasn't designed to ask the user for inputs as you are attempting to do, although we can alter it to do that. To run the function, simply create an mfile like this. Let me know if you want the input feature. (You will get an error when you run this code, just change function fx to function F.
c = 6;
N = 100;
x0 = 0;
x1 = 10;
F = fseries(c,N,x0,x1);
5 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Function Creation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!