photo

Arpan Bhowmik


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

  • Knowledgeable Level 1
  • First Answer

查看徽章

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...

6 years 前 | 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_.

6 years 前 | 16