Sandeep Kumar Patel
Followers: 0 Following: 0
Statistics
0 Questions
3 Answers
RANK
19,681
of 295,467
REPUTATION
2
CONTRIBUTIONS
0 Questions
3 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
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
Feeds
Write a function called mixit
function track=mixit(org,weights) org=double(org); m=(org./65535).*2.-1; weights=weights.'; track=m*weights;...
2 years ago | 0
write a function called palindrome that takes one input argument a char vector and recursively determine whether that argument is a palindrome you are not allowed to use loops not built in function like srtcmp etc. the function returns true or false
If we apply the edits recommended by @Ameer Hamza, we get this: function ok=palindrome(txt) if length(txt)<=1 % added spac...
2 years ago | 1
Fibonacci Series Using Recursive Function
function v = fibor(n,v) if nargin==1 v = fibor(n-1,[1,1]); elseif n>1 v = fibor(n-1,[v,v(end-1)+v(end)]); elseif n...
2 years ago | 0