Skip to content

Commit a355ec8

Browse files
committed
regenerate the manual
1 parent 843348a commit a355ec8

18 files changed

+4497
-50
lines changed

doc/devdocs/cartesian.rst

+5
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ Macro reference
137137
~~~~~~~~~~~~~~~
138138

139139
.. function:: @nloops N itersym rangeexpr bodyexpr
140+
141+
::
140142
@nloops N itersym rangeexpr preexpr bodyexpr
141143
@nloops N itersym rangeexpr preexpr postexpr bodyexpr
142144

@@ -191,6 +193,8 @@ Macro reference
191193
bounds-checking.
192194

193195
.. function:: @nif N conditionexpr expr
196+
197+
::
194198
@nif N conditionexpr expr elseexpr
195199

196200
Generates a sequence of ``if ... elseif ... else ... end`` statements. For example::
@@ -200,6 +204,7 @@ Macro reference
200204
would generate::
201205

202206
if i_1 > size(A, 1)
207+
203208
error("Dimension ", 1, " too big")
204209
elseif i_2 > size(A, 2)
205210
error("Dimension ", 2, " too big")

0 commit comments

Comments
 (0)