photo

Duong Nguyen


Last seen: 거의 2년 전 2022년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

1 질문
2 답변

순위
19,852
of 300,365

평판
2

참여
1 질문
2 답변

답변 채택
100.0%

획득한 표
1

순위
 of 20,933

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,262

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

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

3년 초과 전 | 답변 수: 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 ...

3년 초과 전 | 1

답변 있음
text file I/O
function charnum = char_counter(fname,character) fid = fopen(fname, 'rt'); charnum = 0; if fid<0||~(ischar(character)) c...

3년 초과 전 | 0