comparison extra/integration/testfun/xsquar.m @ 0:6b33357c7561 octave-forge

Initial revision
author pkienzle
date Wed, 10 Oct 2001 19:54:49 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6b33357c7561
1 function y=xsquar(x)
2 %
3 % x^2
4 %
5 y=x.*x;
6 endfunction