Matrix multiplication: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) (New page: <html> <link rel="stylesheet" type="text/css" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" /> <script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/pro...) |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 8: | Line 8: | ||
<br clear="all"> | <br clear="all"> | ||
<script language="JavaScript"> | <script language="JavaScript"> | ||
b1 = JXG.JSXGraph.initBoard('box1', {originX: 300, originY: 150, unitX: 50, unitY: 50}); | |||
b1.suspendUpdate(); | |||
b1.createElement('axis', [[0,0], [1,0]], {}); | |||
b1.createElement('axis', [[0,0], [0,1]], {}); | |||
b1.unsuspendUpdate(); | |||
b2 = JXG.JSXGraph.initBoard('box2', {originX: 300, originY: 150, unitX: 50, unitY: 50}); | |||
b2.suspendUpdate(); | |||
b2.createElement('axis', [[0,0], [1,0]], {}); | |||
b2.createElement('axis', [[0,0], [0,1]], {}); | |||
b2.unsuspendUpdate(); | |||
</script> | </script> | ||
</html> | </html> | ||
[[Category:Examples]] | [[Category:Examples]] |
Revision as of 09:34, 15 December 2008