Analysis of Functions, Interpolation, Curve Fitting, Integrals and Differential Equations

March 23rd, 2010 No Comments   Posted in Documents

In this tutorial we will deal with analysis of functions, interpolation, curve fitting, integrals and differential equations. Firstly, we will need to use polynomials and therefore we have to be familiar with the representation of these. A general polynomial looks like: p(x)=anxn + an-1xn-1 +……….+ a1x + a0 and is represented by a vector in Matlab:
p=[ an an-1 ....... a1 a0 ] Read More

Controlling Command Window Input and Output

March 19th, 2010 No Comments   Posted in Documents

The format Function

The format function controls the numeric format of the values displayed. The function affects only how numbers are displayed, not how MATLAB software computes or saves them. Here are the different formats, together with the resulting output produced from a vector x with components of different magnitudes. Read More

bsxfun

December 6th, 2009 No Comments   Posted in Functions

bsxfun – Apply element-by-element binary operation to two arrays with singleton expansion enabled
Syntax Read More

arrayfun

December 5th, 2009 No Comments   Posted in Functions

arrayfun – Apply function to each element of array Read More

idivide

December 5th, 2009 No Comments   Posted in Functions

idivide – Integer division with rounding option
Syntax Read More

accumarray

September 9th, 2009 No Comments   Posted in Functions

Construct array with accumulation Read More

abs

September 9th, 2009 No Comments   Posted in Functions

Absolute value and complex magnitude
Syntax Read More