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

