Euler spiral is generated by evaluating Fresnel integral. By changing some of the parameters different types of spirals are generated.This script can generate 18 different spirals.
When this script is executed a list dialog appears with 18 different polynomials, select any one to generate one of these spirals.
This program returns the coefficients of the Legendre polynomial P_n, given n. The result is a row vector with powers of x decreasing from left to right (standard MATLAB notation). Like for other polynomials, LegendrePoly(n) can be evaluated at x...
Given a Chebyshev polynomial expansion where the coefficients are stored in a column vector, this script computes the expansion in terms of Legendre polynomials. Useful for spectral methods.
GSP is a graphical user interface which takes x and y points as inputs, along with the order m, then outputs mth order splines between each of the x points. In most cases additional constraints are to be entered as well. Example:
The Mandelbrot set has its place in complex dynamics, a field first investigated by the French mathematicians Pierre Fatou and Gaston Julia at the beginning of the 20th century. The first pictures of it were drawn in 1978 by Brooks and Matelski as...
It takes the input in the form of two Polynomials and output in the form of Quotient . The Quotient's are stored in an array. We can also specify, that how many times the synthetic Division is required.
This video describes working with complex numbers and polynomials in MATLAB in the Czech language. It's the fourth part of complete video tutorial about MATLAB and SIMULINK. AVI file is compressed by WinZIP, TechSmith Screen Capture Codec...
Given a continuous-time system with parameters, can we find the range (or intervals) of the parameters where the system is stable?
When the system model is written with the Laplacian transform, the question is equivalent to finding all...
Given a Legendre polynomial expansion where the coefficients are stored in a column vector, this script computes the expansion in terms of Chebyshev polynomials. Useful for spectral methods.
ZERNFUN.m and ZERNFUN2.m compute the Zernike functions Znm(r,theta). These functions, which form an orthogonal basis on the unit circle, are used in disciplines such as astronomy, optics, optometry, and ophthalmology to characterize functions and...
This code proposes genetic algorithm (GA) to optimize the point-to-point trajectory planning for a 3-link (redundant) robot arm. The objective function for the proposed GA is to minimizing traveling time and space, while not exceeding a...
Contains two functions. The one function computes the greatest common divisor (gcd) of two polynomials a(x) and b(x) over GF(2^m). The other function performs the extended Euclidean algorithm where two polynomials u(x) and v(x) is calculated in...
The standard polynomials are not used to make it more flexible. User provide data stream and generator polynomial.
This function do the Euclid's algorithm. As a matter of fact, for two given polynomials n, m (which are the polynomials of the symbolic variable "s") it gives two other polynomials x, y such that nx+my=1.
This document is designed to perimiter in a few hours a minimal knowledge of the main features of Matlab. All the basic topics are covered in Matlab: - Generation of vectors and matrices - Handling of arrays and indices - Functions...
This program returns the coefficients of the shifted Legendre polynomial P_n, given n. The result is a row vector with powers of x decreasing from left to right (standard MATLAB notation). Like for other polynomials, LegendreShiftPoly(n) can be...
This script performs convolution of multiple polynomials and gives a final result.
Eg : multiconv([1 2],[1 2],[1 2]) = [1 6 12 8]
This .zip file contains 3 mfiles for computing the nodes and weights for Legendre Laguerre and Hermite - Gauss Quadrature of any order n.
Contrary to most of the files in use, the included files are all based on a symmetrical companion... |