(int m, int n)
| 143 | } |
| 144 | |
| 145 | @Override |
| 146 | public Double getImaginary(int m, int n) { |
| 147 | IndexMN i = new IndexMN(m, n); |
| 148 | Double result = imaginary.get(i); |
| 149 | return result == null ? Zeros.DOUBLE : result; |
| 150 | } |
| 151 | |
| 152 | @Override |
| 153 | public Double getImaginary(int index) { |