xin yi leow - MATLAB Central
photo

xin yi leow


Last seen: 4 years ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 01/21 to 03/25Use left and right arrows to move selectionFrom 01/21Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
3 Answers

RANK
7,728
of 297,560

REPUTATION
6

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
 of 20,456

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159,148

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 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 ...

4 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

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

4 years ago | 0