function graphing
|
08-26-2023, 09:53 AM
Post: #2
|
|||
|
|||
RE: function graphing
One way to graph equations in CAS home is to use plotfunc command.
For your sample equation (a*tan(x+a))+(a-sin(a*x)), you can type in plotfunc((a*tan(x+a))+(a-sin(a*x))|a=-1) etc. It will show a small graph in CAS home. if you select the graph and then touch the Show soft menu then a full-screen graph will be shown. You can double tap on plotfunc((a*tan(x+a))+(a-sin(a*x))|a=-1) to copy on to the command line then press esc key and then modify just the a= to another value and plot another graph. Altenatively, use this simple program called pfn. [code] #cas // Using plotfunc command to plot a function // in CAS home pfn(a):= BEGIN plotfunc((a*tan(x+a))+(a-sin(a*x))) END; #end Using above program you can simply type pfn(-1) etc |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
function graphing - Quadratica - 08-25-2023, 10:30 PM
RE: function graphing - Corruptissima - 08-26-2023 09:53 AM
RE: function graphing - BruceH - 08-26-2023, 11:23 AM
RE: function graphing - Quadratica - 08-26-2023, 05:25 PM
|
User(s) browsing this thread: 1 Guest(s)