view m-toolbox/test/test_ao_integrate.m @ 52:daf4eab1a51e
database-connection-manager tip
Fix. Default password should be [] not an empty string
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Wed, 07 Dec 2011 17:29:47 +0100 (2011-12-07) |
parents |
f0afece42f48 |
children |
|
line source
mc
%% integrate x
a = ao(plist('xvals', 0:10, 'yvals', 0:10, 'yunits', 'm'));
ai = integrate(a)
%% Integrate cdata straigt-line
b = ao(0:10)
b.setYunits('N')
bi = integrate(b)
%% Integrate x^2
a = ao(plist('xyfcn', 'x.^2', 'x', 0:0.01:10, 'yunits', 'm'))
ai = integrate(a)
%% Integrate x^3
a = ao(plist('xyfcn', 'x.^3', 'x', 0:0.01:10, 'yunits', 'm'))
ai = integrate(a)