File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Connector with one input signal of type Real.
26
26
- `u`: Value of the connector which is a scalar.
27
27
""" RealInput
28
28
29
- @connector function RealInputArray (; name, nin = 2 , u_start = zeros (nin))
29
+ @connector function RealInputArray (; name, nin, u_start = zeros (nin))
30
30
@variables u (t)[1 : nin] [
31
31
input = true ,
32
32
description = " Inner variable in RealInputArray $name "
40
40
Connector with an array of input signals of type Real.
41
41
42
42
# Parameters:
43
- - `nin=2 `: Number of inputs.
43
+ - `nin`: Number of inputs.
44
44
- `u_start=zeros(nin)`: Guess value for `u`.
45
45
46
46
# States:
@@ -75,7 +75,7 @@ Connector with one output signal of type Real.
75
75
- `u`: Value of the connector which is a scalar.
76
76
""" RealOutput
77
77
78
- @connector function RealOutputArray (; name, nout = 2 , u_start = zeros (nout))
78
+ @connector function RealOutputArray (; name, nout, u_start = zeros (nout))
79
79
@variables u (t)[1 : nout] [
80
80
output = true ,
81
81
description = " Inner variable in RealOutputArray $name "
89
89
Connector with an array of output signals of type Real.
90
90
91
91
# Parameters:
92
- - `nout=2 `: Number of outputs.
92
+ - `nout`: Number of outputs.
93
93
- `u_start=zeros(nout)`: Guess value for `u`.
94
94
95
95
# States:
You can’t perform that action at this time.
0 commit comments