Spec-Zone.ru › Octave 7

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/v7.2.0/Evaluation-Notation.html

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API