Spec-Zone.ru › Octave 9

Next: Печать обозначений, Previous: Шрифты, Up: Правила [Содержание][Индекс]

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–2023 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/v9.2.0/Evaluation-Notation.html

Spec-Zone.ru

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