what is the equivalent matlab function for the operator || || ?

4 ビュー (過去 30 日間)
mari pavithra
mari pavithra 2015 年 3 月 14 日
編集済み: Andrew Newell 2015 年 3 月 14 日
I am having an expression r=||x-Ab|| which I have to convert it into a matlab code.But i have no idea what is this || || operator.can anyone tell me what does it mean and what is the equivalent matlab fuction for it.
  1 件のコメント
Geoff Hayes
Geoff Hayes 2015 年 3 月 14 日
mari - please provide some context for this operator. What does it mean to you? What goes between the two pairs of vertical bars?

サインインしてコメントする。

採用された回答

Andrew Newell
Andrew Newell 2015 年 3 月 14 日
編集済み: Andrew Newell 2015 年 3 月 14 日
You're probably referring to the matrix norm, which is a generalization of the idea of "distance". The equivalent MATLAB function is norm. If there is no subscript on your operator symbol, it probably represents the 2-norm, which is the default for the MATLAB function. For your example, you could write
r = norm(x-A*b);
See also Operator norm.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by