MCPcopy Create free account
hub / github.com/diffplug/matfilerw / getImaginary

Method getImaginary

src/main/java/com/jmatio/types/MLSparse.java:145–150  ·  view source on GitHub ↗
(int m, int n)

Source from the content-addressed store, hash-verified

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) {

Calls 1

getMethod · 0.45