Martinez's Octave Assignment

From Class Wiki
Revision as of 17:47, 1 October 2010 by Jonathanmartinez321 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Evaluating an Integral

To evaluate an integral you must first define the function y = f(x). Follow the simple steps below.


Example

>function y= f(x)

y= sin(x);

endfunction

># We are trying to integrate x from 0,2.

>area=quad("f",0,2)

area =1.4161


This example shows where the correct answer is 1.4161.