Difference between revisions of "FAQ"

From LIBISIS
Jump to navigation Jump to search
 
Line 2: Line 2:
 
==Installation==
 
==Installation==
 
===Where do i get a copy of LIBISIS===
 
===Where do i get a copy of LIBISIS===
 +
 +
===The pl command doesn't seem to work when I use a GUI?===
 +
 +
The PL command may appear to be ineffective in some environments. For instance, if working with GUI lead software. This is because the pl command requires that the current figure (the one that you want to plot into) be selected and if you're working with GUIs this isn't the case.
 +
 +
One might expect
 +
 +
>> pl(data,'name','neutron data');
 +
 +
to plot data over the top of an already open plot named 'neutron data'. However instead the following should be used
 +
 +
>> plotHandle = get_handles('neutron data','');
 +
>> figure(plotHandle)
 +
>> pl(data);
 +
 +
This will resolve the problem and be robust.
  
 
==Getting Help==
 
==Getting Help==
 
Requests for help should be posted to the [http://lists.libisis.org/mailman/listinfo/libisis-users libisis-users] mailing list.
 
Requests for help should be posted to the [http://lists.libisis.org/mailman/listinfo/libisis-users libisis-users] mailing list.

Latest revision as of 14:08, 19 October 2010

Frequently Asked Questions on LIBISIS

Installation

Where do i get a copy of LIBISIS

The pl command doesn't seem to work when I use a GUI?

The PL command may appear to be ineffective in some environments. For instance, if working with GUI lead software. This is because the pl command requires that the current figure (the one that you want to plot into) be selected and if you're working with GUIs this isn't the case.

One might expect

>> pl(data,'name','neutron data');

to plot data over the top of an already open plot named 'neutron data'. However instead the following should be used

>> plotHandle = get_handles('neutron data',); >> figure(plotHandle) >> pl(data);

This will resolve the problem and be robust.

Getting Help

Requests for help should be posted to the libisis-users mailing list.