eit_inverse.get_results

eit_inverse.get_results(i_t: int = 0, i_f: int = 0, i_res: int = 0) ndarray[source]

Retrieves the computed result for the specified time, frequency, and result indices. If the result is not already computed, it triggers the computation.

Parameters:
  • i_t (int, optional) – Index for the time corresponding to the result, default is 0.

  • i_f (int, optional) – Index for the frequency corresponding to the result, default is 0.

  • i_res (int, optional) – Index for the result corresponding to the result, default is 0.

Returns:

The result corresponding to the specified indices.

Return type:

np.ndarray

Note

If the requested result is not found in self.results_ppt, the method will call self.solve to compute it before returning.