export_rl_matrix#

Circuit.export_rl_matrix(matrix_name, file_path, is_format_default=True, width=8, precision=2, is_exponential=False, setup_name=None, default_adaptive=None, is_post_processed=False)[source]#

Export R/L matrix after solving.

Parameters:
matrix_namestr

Matrix name to be exported.

file_pathstr

File path to export R/L matrix file.

is_format_defaultbool, optional

Whether the exported format is default or not. If False the custom format is set (no exponential).

widthint, optional

Column width in exported .txt file.

precisionint, optional

Decimal precision number in exported *.txt file.

is_exponentialbool, optional

Whether the format number is exponential or not.

setup_namestr, optional

Name of the setup.

default_adaptivestr, optional

Adaptive type.

is_post_processedbool, optional

Boolean to check if it is post processed. Default value is False.

Returns:
bool

True when successful, False when failed.