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