Package eu.admire.seismo.common

Examples of eu.admire.seismo.common.Complex


          resPAZ.setName(name.toString());
        }
        if(currentLine.startsWith("B053F10-13")){
          String[] tokens= currentLine.split("\\s+");
        
          Complex zero=new Complex(new Double(tokens[2].trim()), new Double(tokens[3].trim()));
          zeros.add(zero);         
        }
        if(currentLine.startsWith("B053F15-18")){
              String[] tokens= currentLine.split("\\s+");
             
          Complex pole=new Complex(new Double(tokens[2].trim()), new Double(tokens[3].trim()));
          poles.add(pole);         
        }
        if(currentLine.startsWith("B058F04")){
          String[] tokens= currentLine.split("Gain:\\s+");
         
View Full Code Here

TOP

Related Classes of eu.admire.seismo.common.Complex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.