Community Profile

photo

xin yi leow


Last seen: alrededor de 3 años hace Con actividad desde 2021

Followers: 0   Following: 0

Estadísticas

  • First Answer

Ver insignias

Feeds

Ver por

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

alrededor de 3 años hace | 3

Respondida
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

alrededor de 3 años hace | 0

Respondida
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) ...

más de 3 años hace | 0