发布网友 发布时间:2022-04-01 19:13
共4个回答
热心网友 时间:2022-04-01 20:42
matlab中的abs(x)是去绝对值的函数热心网友 时间:2022-04-01 22:00
其实如果想知道matlab中函数的作用,最好是help一下~,慢慢的你会发现它很强大的。help一下呗,事实证明你的确信是错的help absABS Absolute value. ABS(X) is the absolute value of the elements of X. When X is complex, ABS(X) is the complex molus (magnitude) of the elements of X.这个就是它的作用,简单说就是求绝对值,比如ABS(-1) = 1,ABS(2) = 2。热心网友 时间:2022-04-01 23:35
呵呵,其实如果想知道matlab中函数的作用,最好是help一下~,慢慢的你会发现它很强大的。help一下呗,事实证明你的确信是错的help absABS Absolute value. ABS(X) is the absolute value of the elements of X. When X is complex, ABS(X) is the complex molus (magnitude) of the elements of X.这个就是它的作用,简单说就是求绝对值,比如ABS(-1) = 1,ABS(2) = 2。热心网友 时间:2022-04-02 01:43
matlab中abs(x)表示对x中的元素求绝对值,当x为复数时,表示该复数的幅值。