Scilab Home Page | Wiki | Bug Tracker | Forge | Mailing List Archives | Scilab Online Help | ATOMS
File : Details
Login with GitLab

The Inverse Fast Chebyshev Transform (IFCT)

The Inverse Fast Chebyshev Transform at the Extrema Grid
(1605 downloads for this version - 1605 downloads for all versions)
Details
Version
1.0
Author
Brenton Horne
Maintainer
Brenton Horne
Category
License
Supported Scilab Version
5.4
Creation Date
February 20, 2012
Description
            A simple program that calculates the inverse discrete chebyshev transform at the
extrema grid of the Chebyshev Polynomials of the First Kind
(x=-cos(%pi*(0:N)'/N)) by use of a fast fourier transform with modified input
arguments.            
Files (1)
[361 bytes]
Miscellaneous file
	  A simple program that calculates the inverse discrete chebyshev transform at
the extrema grid of the Chebyshev Polynomials of the First Kind
(x=-cos(%pi*(0:N)'/N)) by use of a fast fourier transform with modified input
arguments.
News (0)
Comments (1)     Leave a comment 
Comment from Samuel Gougeon -- May 9, 2015, 11:53:58 PM    
Hello,

AS for FCT, in order to prevent the global modification of mode() and ieee() user settings
outside the function, it would be nice coding this as follow:

mode_ini = mode()
mode(0)
ieee_ini = ieee()
ieee(1)
//... then, at the end, before quitting the function:
mode(mode_ini)
ieee(ieee_ini)

Thanks
Samuel
Leave a comment
You must register and log in before leaving a comment.
Login with GitLab
Email notifications
Send me email when this toolbox has changes, new files or a new release.
You must register and log in before setting up notifications.