Internals

Internal Documentation

This page lists all the documented internals of the Documenter module and submodules.

Contents

Index

A list of all internal documentation.

Internal Package Docs

Holds conversion functions for parameter format symbols when parsing.

source

Holds conversion functions for parameter format symbols when writing.

source

The default data format, if not found in option line.

source

Default data format symbol to use in option line.

source

The default parameter format, if not found in option line.

source

Defaoult parameter format symbo to use in option line.

source

The default characteristic impedance, if not found in option line.

source

Default characteristic iimpedance to use in option line.

source

Default unit value to use in option line.

source

The default unit, if not found in option line.

source
Touchstone.formatsConstant.

Symbols for data format for strings found in option line.

source

String for data format symbols in option line.

source

Symbols for different keywords

source
Touchstone.parametersConstant.

Symbols for different parameter formats for strings found in option line

source

Strings for parameter format symbols in option line.

source
Touchstone.unitsConstant.

Values for units for strings found in option line.

source

String for unit multiplier in option line

source
Base.:==Method.

Compares data points.

source
Base.:==Method.

Compares Options.

source
Base.:==Method.

Compares Touchstone data.

source
Base.:≈Method.

Compares data points approximately.

source
Touchstone.comp2daMethod.
comp2da( z )

Returns a pair with the magnitude in dB and angle in degrees of a complex number.

source
Touchstone.comp2maMethod.
comp2ma( z )

Returns a pair with the linear magnitude and angle in degrees of a complex number.

source
compstring( z )

Returns a pair with the real and imaginary components of a complex number.

source
Touchstone.da2compMethod.
da2comp( m, a )

Converts a pair of values in dB / angle format to a complex number.

source
dastring( z )

Returns a string in dB / angle format of a complex number.

source
is_commentline( line )

Checks, if a line is a comment line.

source
is_empy_line( line )

Checks, if a line is empty.

source
is_format_option( option )

Checks, if a string is a valid data format in an option line.

source
is_frequency_unit_option( option )

Checks, if a string is a valid unit in an option line.

source
is_keyword_line( line )

Checks, if a line is a valid keyword line.

source
is_option_line( line )

Checks, if a line is a option line.

source
is_parameter_option( option )

Checks, if a string is a valid parameter format in an option line.

source
is_resistance_option( option )

Checks, if a string is a valid resistance in an option line.

source
Touchstone.ma2compMethod.
ma2comp( m, a )

Converts a pair of values in magnitude / angle format to a complex number.

source
mastring( z )

Returns a string in magnitude / angle format of a complex number.

source
pairstring( pair )

Returns a string combining the components of a pair.

source
parse_comment_line( line )

Returns the comment of a comment line.

source
Touchstone.parse_dataFunction.
parse_data( line, N, [ options ] )

Returns a data point structure for a valid line of a one-port Touchstone file.

For 3 or more ports, the line should be the concatenation of 3 or more lines from the Touchstone file.

source
Touchstone.parse_dataFunction.
parse_data( vals, N, [ options ] )

Returns a data point structure for a vector of numbers from a one-port Touchstone file.

For 3 or more ports, the array should contain exactly 2N² + 1 values.

source
parse_format_option( option )

Returns the symbol for a valid data format string in an option line.

source
parse_frequency_unit_option( option )

Returns the multiplier for a unit string in an option line.

source
parse_keyword_line( line )

Returns the keyword parameters for a keyword line.

source
parse_option_line( line )

Returns the option structure for a valid option line.

source
parse_parameter_option( option )

Returns the symbol for a valid parameter format string in an option line.

source
parse_resistance_option( option )

Returns the value of the characteristic impedance for a valid resistance string in an option line.

source
write_comment_line( comment )

Returns a comment line string for a comment.

source
Touchstone.write_dataFunction.
write_data( data, N [ options ] )

Returns a string for N-port Touchstone formated lines for a data point.

source
write_format_option( [ symbol ] )

Returns an option line string for a valid data format symbol.

source
write_frequency_unit_option( [ value ] )

Returns an option line string for a valid frequency unit multiplier.

source
 write_option_line( [ options ] )

Returns the option line string for an option structure.

source
write_parameter_option( [ symbol ] )

Returns an option line string for a valid parameter option symbol.

source
write_resistance_option( [ resistance ] )

Returns an option line string for the characteristic impedance.

source