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

Initial revision
author pkienzle
date Wed, 10 Oct 2001 19:54:49 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/extra/integration/testfun/xsquar.m	Wed Oct 10 19:54:49 2001 +0000
@@ -0,0 +1,6 @@
+function y=xsquar(x)
+%
+% x^2
+%
+	y=x.*x;
+endfunction