You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`SignalTable`](@ref)| Returns a new SignalTable dictionary. |
41
-
|[`showInfo`](@ref)| Writes info about a signal table to the output stream. |
42
-
|[`independentSignalNames`](@ref)| Returns the names of the independent signals. |
43
-
|[`signalNames`](@ref)| Returns a string vector of the signal names that are present in a signal table. |
44
-
|[`hasSignal`](@ref)| Returns `true` if a signal is present in a signal table. |
45
-
|[`getSignal`](@ref)| Returns signal from a signal table as [`Var`](@ref) or as [`Par`](@ref). |
46
-
|[`getSignalInfo`](@ref)| Returns signal with :\_typeof, :\_size keys instead of :values/:value keys. |
47
-
|[`getIndependentSignalsSize`](@ref)| Returns the lengths of the independent signals as Dims. |
48
-
|[`getValues`](@ref)| Returns the *values* of a [`Var`](@ref) signal from a signal table. |
49
-
|[`getValuesWithUnit`](@ref)| Returns the *values* of a [`Var`](@ref) signal from a signal table including its unit. |
50
-
|[`getValue`](@ref)| Returns the *value* of a [`Par`](@ref) signal from a signal table. |
51
-
|[`getValueWithUnit`](@ref)| Returns the *value* of a [`Par`](@ref) signal from a signal table including its unit. |
52
-
|[`getFlattenedSignal`](@ref)| Returns a copy of a signal where the values or the value are *flattened* and converted for use in plots or traditional tables. |
53
-
|[`getDefaultHeading`](@ref)| Returns the default heading for a plot. |
54
-
|[`signalTableToJSON`](@ref)| Returns a JSON string representation of a [`SignalTable`](@ref) instance|
55
-
|[`writeSignalTable`](@ref)| Write a [`SignalTable`](@ref) instance in JSON format on file. |
56
-
|[`toSignalTable`](@ref)| Returns a signalTable as instance of [`SignalTable`](@ref).|
57
-
|[`signalTableToDataFrame`](@ref)| Returns a signal table as [DataFrame](https://github.com/JuliaData/DataFrames.jl) object. |
|[`SignalTable`](@ref)| Returns a new SignalTable dictionary. |
41
+
|[`showInfo`](@ref)| Writes info about a signal table to the output stream. |
42
+
|[`getIndependentSignalNames`](@ref)| Returns the names of the independent signals. |
43
+
|[`getSignalNames`](@ref)| Returns a string vector of the signal names that are present in a signal table. |
44
+
|[`hasSignal`](@ref)| Returns `true` if a signal is present in a signal table. |
45
+
|[`getSignal`](@ref)| Returns signal from a signal table as [`Var`](@ref) or as [`Par`](@ref). |
46
+
|[`getSignalInfo`](@ref)| Returns signal with :\_typeof, :\_size keys instead of :values/:value keys. |
47
+
|[`getIndependentSignalsSize`](@ref)| Returns the lengths of the independent signals as Dims.|
48
+
|[`getValues`](@ref)| Returns the *values* of a [`Var`](@ref) signal from a signal table. |
49
+
|[`getValuesWithUnit`](@ref)| Returns the *values* of a [`Var`](@ref) signal from a signal table including its unit. |
50
+
|[`getValue`](@ref)| Returns the *value* of a [`Par`](@ref) signal from a signal table. |
51
+
|[`getValueWithUnit`](@ref)| Returns the *value* of a [`Par`](@ref) signal from a signal table including its unit. |
52
+
|[`getFlattenedSignal`](@ref)| Returns a copy of a signal where the values or the value are *flattened* and converted for use in plots or traditional tables. |
53
+
|[`getDefaultHeading`](@ref)| Returns the default heading for a plot. |
54
+
|[`signalTableToJSON`](@ref)| Returns a JSON string representation of a signal table. |
55
+
|[`writeSignalTable`](@ref)| Write a signal table in JSON format on file.|
56
+
|[`toSignalTable`](@ref)| Returns a signal table as [`SignalTable`](@ref) object. |
57
+
|[`signalTableToDataFrame`](@ref)| Returns a signal table as [DataFrame](https://github.com/JuliaData/DataFrames.jl) object. |
Copy file name to clipboardExpand all lines: docs/src/Functions/SignalTables.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ The functions below operate on a *signal table* that implements the [Abstract Si
15
15
|[`new_signal_table`](@ref)| Returns a new signal table dictionary (= OrderedDict{String,Any}("_class" => :SignalTable)). |
16
16
|[`SignalTable`](@ref)| Returns a new instance of type SignalTable. |
17
17
|[`showInfo`](@ref)| Writes info about a signal table to the output stream. |
18
-
|[`independentSignalNames`](@ref)| Returns the names of the independent signals. |
19
-
|[`signalNames`](@ref)| Returns a string vector of the signal names that are present in a signal table. |
18
+
|[`getIndependentSignalNames`](@ref)| Returns the names of the independent signals. |
19
+
|[`getSignalNames`](@ref)| Returns a string vector of the signal names that are present in a signal table. |
20
20
|[`hasSignal`](@ref)| Returns `true` if a signal is present in a signal table. |
21
21
|[`getSignal`](@ref)| Returns signal from a signal table as [`Var`](@ref) or as [`Par`](@ref). |
22
22
|[`getSignalInfo`](@ref)| Returns signal with :\_typeof, :\_size keys instead of :values/:value keys. |
@@ -27,18 +27,18 @@ The functions below operate on a *signal table* that implements the [Abstract Si
27
27
|[`getValueWithUnit`](@ref)| Returns the *value* of a [`Par`](@ref) signal from a signal table including its unit. |
28
28
|[`getFlattenedSignal`](@ref)| Returns a copy of a signal where the values or the value are *flattened* and converted for use in plots or traditional tables. |
29
29
|[`getDefaultHeading`](@ref)| Returns the default heading for a plot. |
30
-
|[`signalTableToJSON`](@ref)| Returns a JSON string representation of a [`SignalTable`](@ref) instance|
31
-
|[`writeSignalTable`](@ref)| Write a [`SignalTable`](@ref) instance in JSON format on file. |
32
-
|[`toSignalTable`](@ref)| Returns a signalTable as instance of [`SignalTable`](@ref).|
30
+
|[`signalTableToJSON`](@ref)| Returns a JSON string representation of a signal table. |
31
+
|[`writeSignalTable`](@ref)| Write a signal table in JSON format on file.|
32
+
|[`toSignalTable`](@ref)| Returns a signal table as instance of [`SignalTable`](@ref). |
33
33
|[`signalTableToDataFrame`](@ref)| Returns a signal table as [DataFrame](https://github.com/JuliaData/DataFrames.jl) object. |
0 commit comments