Community Profile

photo

Duong Nguyen


Last seen: 5 months 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计数据

  • Thankful Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


Write a recursive function called fibor
Hello, I got a question as a below figure My approach is as the following code: function output = fibor(n) a = 0; b = 1; o...

2 years 前 | 1 个回答 | 0

1

个回答

已回答
write a function called saddle in the input matrix M , the function should return with exactly two column vector and each row of output vector represent dimensions of saddle point in the input matrix M
Hi, I got my answer for this question as shown below. I am wondering that if there is any test cases fail with my answer? Thank ...

2 years 前 | 1

已回答
text file I/O
function charnum = char_counter(fname,character) fid = fopen(fname, 'rt'); charnum = 0; if fid<0||~(ischar(character)) c...

2 years 前 | 0