Community Profile

photo

xin yi leow


Last seen: 3 years ago Active since 2021

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
recursive function to check a Palindrome
function t=palindrome(char) if length(char)==2 if char(1)==char(2) t=true else ...

3 years ago | 3

Answered
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 years ago | 0

Answered
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 years ago | 0