Fourfun

A system for automatic computations using Fourier expansions
207 Downloads
Updated 24 Jun 2014

View License

This is a collection of functions named Fourfun that uses object-oriented programming in MATLAB. It can be used to quickly and accurately approximate periodic functions with Fourier expansions. To increase efficiency and reduce the number of computations of the Fourier transform, Fourfun automatically determines the number of nodes necessary for representations that are accurate to close to machine precision. Common MATLAB functions have been overloaded to keep the syntax of the Fourfun class as consistent as possible with the general MATLAB syntax.

To get started, one must make a fourfun object. Fourfun objects can then be manipulated using the following functions: cos, diff, exp, int, integral, log, plot, roots, sin. See the comments for the required arguments for each function.

Here is a quick and simple example of how to make a fourfun object (a fourfun object is the approximation of a periodic function), find the roots of the fourfun, and then plot the results.

f=fourfun(@(x) cos(3*x));
g=roots(f);

hold on
plot(f,'r')
plot(g,zeros(1,length(g)),'.k')
hold off

Cite As

Kristyn McLeod (2024). Fourfun (https://www.mathworks.com/matlabcentral/fileexchange/46999-fourfun), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2013b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Input Specification in Help Center and MATLAB Answers
Tags Add Tags

Community Treasure Hunt

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

Start Hunting!

Fourfun/@fourfun/

Version Published Release Notes
1.1.0.0

I have added a brief explanation of how to get started using Fourfun.

1.0.0.0