00001 /* 00002 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab 00003 * Copyright (C) 2006-2007 - INRIA 00004 * 00005 * This file must be used under the terms of the CeCILL. 00006 * This source file is licensed as described in the file COPYING, which 00007 * you should have received as part of this distribution. The terms 00008 * are also available at 00009 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt 00010 * 00011 */ 00012 00013 import javasci.* ; 00014 00019 class Clf 00020 { 00021 00022 public static void main(String[] args) 00023 { 00024 Scilab.Exec("disp('Test clf 1');"); 00025 Scilab.Exec("clf();"); 00026 Scilab.Exec("disp('Test clf 2');"); 00027 Scilab.Exec("xdel(winsid());"); 00028 Scilab.Finish(); 00029 } 00030 } 00031
1.5.5