統計
MATLAB Answers
0 質問
2 回答
ランク
of 176,499
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Calculating distance from a refence vector for a matrix
You can use _bsxfun_ to do the subtraction steps in one line as follows: A = [1 2 3; 4 5 6; 7 8 9]; ref = [2 6 8]; di...
Calculating distance from a refence vector for a matrix
You can use _bsxfun_ to do the subtraction steps in one line as follows: A = [1 2 3; 4 5 6; 7 8 9]; ref = [2 6 8]; di...
約8年 前 | 0
| 採用済み
回答済み
How do I use Greek letters in fprintf ? Since fprintf uses \ in its argument, I cant write Greek letters in it. Thanks
Try escaping the escape character: fprintf('\\lambda %g\t',10) I know this works to get Greek characters in _sprintf_.
How do I use Greek letters in fprintf ? Since fprintf uses \ in its argument, I cant write Greek letters in it. Thanks
Try escaping the escape character: fprintf('\\lambda %g\t',10) I know this works to get Greek characters in _sprintf_.
約8年 前 | 16

