@@ -76,46 +76,46 @@ the following conveniences are provided:
76
76
variable is plotted as a function of time. For example, the list above
77
77
is equivalent to:
78
78
79
- ``` julia
80
- idxs = [1 , (1 , 3 ), (4 , 5 )]
81
- ```
79
+ ``` julia
80
+ idxs = [1 , (1 , 3 ), (4 , 5 )]
81
+ ```
82
82
83
- and
83
+ and
84
84
85
- ``` julia
86
- idxs = [1 , 3 , 4 ]
87
- ```
85
+ ``` julia
86
+ idxs = [1, 3, 4]
87
+ ```
88
88
89
- is the most concise way to plot the variables 1, 3, and 4 as a function
90
- of time.
89
+ is the most concise way to plot the variables 1 , 3 , and 4 as a function
90
+ of time.
91
91
92
92
- It is possible to omit the list if only one plot is wanted: ` (2,3)`
93
93
and ` 4` are respectively equivalent to ` [(2,3)]` and ` [(0,4)]` .
94
94
95
95
- A tuple containing one or several lists will be expanded by
96
96
associating corresponding elements of the lists with each other:
97
97
98
- ``` julia
99
- idxs = ([1 , 2 , 3 ], [4 , 5 , 6 ])
100
- ```
98
+ ``` julia
99
+ idxs = ([1, 2, 3], [4, 5, 6])
100
+ ```
101
101
102
- is equivalent to
102
+ is equivalent to
103
103
104
- ``` julia
105
- idxs = [(1 , 4 ), (2 , 5 ), (3 , 6 )]
106
- ```
104
+ ``` julia
105
+ idxs = [(1, 4), (2, 5), (3, 6)]
106
+ ```
107
107
108
- and
108
+ and
109
109
110
- ``` julia
111
- idxs = (1 , [2 , 3 , 4 ])
112
- ```
110
+ ``` julia
111
+ idxs = (1, [2, 3, 4])
112
+ ```
113
113
114
- is equivalent to
114
+ is equivalent to
115
115
116
- ``` julia
117
- idxs = [(1 , 2 ), (1 , 3 ), (1 , 4 )]
118
- ```
116
+ ``` julia
117
+ idxs = [(1, 2), (1, 3), (1, 4)]
118
+ ```
119
119
120
120
- Instead of using integers, one can use the symbols from a ` ParameterizedFunction` .
121
121
For example, ` idxs=(:x,:y)` will replace the symbols with the integer values for
0 commit comments