4.3 Типы данных одинарной точности
Octave поддерживает типы данных одинарной точности, и большинство функций Octave принимают значения одинарной точности и возвращают ответы одинарной точности. Переменная одинарной точности создается с помощью функции single.
Например:
sngl = single (rand (2, 2))
⇒ sngl =
0.37569 0.92982
0.11962 0.50876
class (sngl)
⇒ single Многие функции также могут возвращать значения одинарной точности напрямую. Например
ones (2, 2, "single") zeros (2, 2, "single") eye (2, 2, "single") rand (2, 2, "single") NaN (2, 2, "single") NA (2, 2, "single") Inf (2, 2, "single")
все вернут матрицы одинарной точности.
© 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/Single-Precision-Data-Types.html