1.3.2 Обозначение вычислений
В примерах данного руководства результаты выражений, которые вы вычисляете, указываются с помощью ‘⇒’. Например:
sqrt (2)
⇒ 1.4142 Это можно прочитать как «sqrt (2) вычисляется до 1.4142».
В некоторых случаях матричные значения, возвращаемые выражениями, отображаются так
[1, 2; 3, 4] == [1, 3; 2, 4]
⇒ [ 1, 0; 0, 1 ] а в других случаях — так
eye (3)
⇒ 1 0 0
0 1 0
0 0 1 чтобы четко показать структуру результата.
Иногда для описания одного выражения показывается другое выражение, которое дает идентичные результаты. Точная эквивалентность выражений указывается с помощью ‘≡’. Например:
rot90 ([1, 2; 3, 4], -1) ≡ rot90 ([1, 2; 3, 4], 3) ≡ rot90 ([1, 2; 3, 4], 7)
© 1996–2022 The Octave Project Developers
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
https://docs.octave.org/v5.2.0/Evaluation-Notation.html