Advertisement
flatcap89

OhmR.java

Jan 5th, 2013
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. package prakt.v6;
  2.  
  3. import blank.v5.Complex;
  4.  
  5. public class OhmR implements Zweipol {
  6.    
  7.     private final double R;
  8.    
  9.     public OhmR(double wert) {
  10.         R = wert;
  11.     }
  12.  
  13.     public Complex widerstand(double freq) {
  14.         return new Complex(R, 0.0);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement