Static Public Member Functions | |
| static void | main (String[] args) |
Definition at line 4 of file Exemple10.java.
| static void Exemple10::main | ( | String[] | args | ) | [inline, static] |
Definition at line 6 of file Exemple10.java.
References a, javasci::SciComplex::disp(), and s.
00006 { 00007 00008 SciComplex a = new SciComplex("A"); 00009 Scilab.Exec("A=1. + 80*%i"); 00010 System.out.println("----------------------------------------------------"); 00011 a.disp(); 00012 System.out.println("----------------------------------------------------"); 00013 00014 System.out.println("A= "+a.getRealPartData()+" "+a.getImaginaryPartData()+" "); 00015 System.out.println("----------------------------------------------------"); 00016 SciComplex s = new SciComplex("S",4,8); 00017 s.disp(); 00018 System.out.println("----------------------------------------------------"); 00019 System.out.println("S= "+s.getRealPartData()+" "+s.getImaginaryPartData()+" "); 00020 System.out.println("----------------------------------------------------"); 00021 SciComplex Ap = new SciComplex("A"); 00022 Ap.disp(); 00023 }
Here is the call graph for this function:

1.5.1