Community Profile

photo

xin yi leow


Last seen: 대략 3년 전 2021년부터 활동

Followers: 0   Following: 0

통계

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
recursive function to check a Palindrome
function t=palindrome(char) if length(char)==2 if char(1)==char(2) t=true else ...

3년 초과 전 | 3

답변 있음
Code for 'Reverse a Vector'
function v=reversal(w) if length(w)==1 v=w(1); else v=[reversal(w(2:end)) w(1)]; end end

3년 초과 전 | 0

답변 있음
I get an error, what's wrong? on Sparse matrix logic and answer
function matrix=sparse2matrix(cellx) matrix=zeros(cellx{1}); matrix(:,:)=cellx{2}; for ii=3:length(cellx) ...

3년 초과 전 | 0