Difference between revisions of "Abs (gnuplot)"
From Wiki4Intranet
m (1 версия) |
|||
(One intermediate revision by the same user not shown) | |||
Line 18: | Line 18: | ||
[[Категория:Функции (gnuplot)]] | [[Категория:Функции (gnuplot)]] | ||
− | {{replicate-from-custiswiki-to- | + | {{replicate-from-custiswiki-to-4intranet}} |
Latest revision as of 17:53, 5 April 2012
abs(x)
возвращает абсолютное значение аргумента.
Возвращаемое значение имеет тот же тип, что и аргумент.
<plot> set xrange [-10:+10]; plot abs(x) </plot>
gnuplot> set encoding utf8
^ line 0: expecting one of 'default', 'iso_8859_1', 'iso_8859_2', 'iso_8859_15', 'cp437', 'cp850', 'cp852', 'koi8r' or 'koi8u'
Could not find/open font when opening font Arial, using default
Для комплексных аргументов abs(x)
определен как длина вектора x на комплексной плоскости, т.е.
sqrt(real(x)**2 + imag(x)**2)
.
Статья реплицируется в Wiki4IntraNet.