Exemple6 Class Reference


Static Public Member Functions

static void main (String[] args)

Detailed Description

Definition at line 4 of file Exemple6.java.


Member Function Documentation

static void Exemple6::main ( String[]  args  )  [inline, static]

Definition at line 6 of file Exemple6.java.

References a, b, javasci::SciDouble::disp(), javasci::SciDouble::Get(), and javasci::SciDouble::Send().

00006                                          {
00007   double b;
00008         
00009         SciDouble a = new SciDouble("A");
00010         Scilab.Exec("A=4;");
00011         a.Get();
00012         System.out.println("----------------------------------------------------");
00013         a.disp();
00014         System.out.println("----------------------------------------------------");
00015         b=a.getData();
00016         
00017         System.out.println(b);
00018     
00019         System.out.println("----------------------------------------------------");
00020           SciDouble d = new SciDouble("D",8);
00021     d.Send();
00022     Scilab.Exec("P=D*2;");
00023     Scilab.Exec("Q=P*3;");
00024     
00025     SciDouble q = new SciDouble("Q");
00026     Scilab.Exec("Q=P*3;");
00027     q.Get();
00028     q.disp();
00029     System.out.println("----------------------------------------------------");
00030     Scilab.Finish();
00031   }

Here is the call graph for this function:


The documentation for this class was generated from the following file:
Generated on Sun Mar 4 16:15:00 2007 for Scilab [trunk] by  doxygen 1.5.1