You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Timothy Pearson 3dd68d9a9c
Initial import of kmatplot 0.4
13 years ago
..
Makefile.am Initial import of kmatplot 0.4 13 years ago
README.Scilab Initial import of kmatplot 0.4 13 years ago
kcontour.sci Initial import of kmatplot 0.4 13 years ago
kimage.sci Initial import of kmatplot 0.4 13 years ago
kmesh.sci Initial import of kmatplot 0.4 13 years ago
kplot.sci Initial import of kmatplot 0.4 13 years ago
plots.c Initial import of kmatplot 0.4 13 years ago
plots.sci Initial import of kmatplot 0.4 13 years ago

README.Scilab

Scilab interface.
Run Scilab from this directory and type:
exec('plots.sci');
to load all functions into Scilab.

Functions defined in plots.o:

ksetapp		Sets the active plot application.
		See View->I/O info ... to find out a number of a running app. 

		Usage:
		ksetapp(app_number)
		curr_app_number = ksetapp(0)


ksetaxes	Sets the active axes in a plot app. ( see menu View->I/O info... )

		Usage:
		ksetaxes(axes_number)
		curr_axes_number = ksetaxes(0)

kaddaxes	Adds a new axes object and makes it the current one.
		0 - 2D axes
		1 - 3D axes
		
		Usage:
		axes_number = kaddaxes(axes_number)

kadd		Adds a new dataset to the current axes.
		Types are:
		0 - curve,
		1 - image,
		2 - surface,
		3 - figure.

		Usage:
		dataset_number = kadd(dataset_type) 


kremove		Removes a dataset from the current axes
		
		Usage:
		kremove(dataset_number)


kremoveall	Removes all datasets from the current axes

		Usage:
		kremoveall()


ksetmatrix	Sets a matrix as a plot channel.
		See File/Import Data to see descriptions of channels.

		Usage:
		ksetmatrix(dataset_number,channel_number,matrix)




Functions defined in *.sci files:

kplot
kimage
kcontour
kmesh

Examine sources for a short description of usage. Rememer to add axes before creating plots.