Skip to content

Commit a13d1a4

Browse files
committed
feat: add error managment if a > b in Vector((a,b))
1 parent a0c7dcb commit a13d1a4

File tree

6 files changed

+1
-0
lines changed

6 files changed

+1
-0
lines changed

build/module00.pdf

41.5 KB
Binary file not shown.

build/module01.pdf

252 Bytes
Binary file not shown.

build/module02.pdf

184 Bytes
Binary file not shown.

build/module03.pdf

768 Bytes
Binary file not shown.

build/module04.pdf

1.1 KB
Binary file not shown.

module01/subject/en.subject.tex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,7 @@ \section*{Examples}
507507
\item a list of lists of single float: \texttt{Vector([[0.0], [1.0], [2.0], [3.0]])},
508508
\item a size: \texttt{Vector(3)} -> the vector will have \texttt{values = [[0.0], [1.0], [2.0]]},
509509
\item a range: \texttt{Vector((10,16))} -> the vector will have \texttt{values = [[10.0], [11.0], [12.0], [13.0], [14.0], [15.0]]}.
510+
in \texttt{Vector((a,b))}, if \texttt{a > b}, you must display accurate error message.
510511
\end{itemize}
511512

512513
\textit{By default, the vectors are generated as classical column vectors if initialized with a size or range.}

0 commit comments

Comments
 (0)