On Mon 19 Mar 2007 22:11, Kai Ponte wrote: > Would OOo Calc handle the job?
MatLab - Linux version exists http://users.rowan.edu/~shreek/networks1/matlabintro.html " Plotting The plot command is used for generating 1-D (functions of one variable) plots. Do >> help plot for complete details. Let's make a graph of y = sin(x), for x on the interval x=0, to x = 10. >> x = [0:0.1:10]; (here .1 is the increment) >> y = sin(x); (notice how the sin function operates on each element of the entire row vector x, to generate a nother row vector y) >> plot (x, y) Surface or 2-D (functions of two variables) plots are generated using the surf command. More on that later. To clear a plot, type in >> clg (clear graph) To generate another plot window, do >> figure " ......................... best wishes -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
