~ubuntu-branches/debian/squeeze/maxima/squeeze

« back to all changes in this revision

Viewing changes to share/contrib/mnewton.dem

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2006-10-18 14:52:42 UTC
  • mto: (1.1.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20061018145242-vzyrm5hmxr8kiosf
ImportĀ upstreamĀ versionĀ 5.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"DEMO FILE FOR MNEWTON v1.1"$
2
 
 
3
 
load("mnewton")$
4
 
 
5
 
mnewton([x1+3*log(x1)-x2^2, 2*x1^2-x1*x2-5*x1+1], [x1, x2], [5, 5]);
6
 
 
7
 
mnewton([2*a^a-5],[a],[1]);
8
 
 
9
 
mnewton([x^2+y^2+z^2-1, 2*x^2+y^2-4*z, 3*x^2-4*y+z^2], [x, y, z], [0.5, 0.5, 0.5]);
10
 
 
11
 
mnewton([2*3^X-Y/X-5, X+2^Y-4], [X, Y], [2, 2]);
12
 
 
13
 
"END OF THE DEMO"$