Differences between revisions 1 and 2
Revision 1 as of 2010-12-18 05:35:50
Size: 438
Editor: V.junghare
Comment:
Revision 2 as of 2010-12-18 05:38:47
Size: 474
Editor: V.junghare
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
sage: y=var('y') sage: x
x
Line 11: Line 12:
sage: y=t*sin(t)
sage: plot(t*sin(t),(t,0,10*pi))
sage: f = function('f',t)
sage: f
f(t)
sage: f(t)
=t *sin(t)
sage: plot(x*sin(x),(0,10*pi))
Line 14: Line 18:
  • Book

    Getting started with MATLAB

    Author

    Rudra Pratap

    Edition

sage: x
x
sage: t=var('t')
sage: f = function('f',t)
sage: f
f(t)
sage: f(t)=t *sin(t)
sage: plot(x*sin(x),(0,10*pi))
<html><font color='black'><img src='cell://sage0.png'></font></html>

  • Solution by:

    • <VINAY>, <STU>>, < Symbiosis, pune >

    • <Your Name>, <Profession>, <Organization>

Pratap-Page no.184,Ex.no.1) (last edited 2010-12-18 05:38:47 by V.junghare)