![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/28945582_1674408013074_DEF.jpg)
Abhinav
Followers: 0 Following: 0
Statistics
All
RANK
184,129
of 297,046
REPUTATION
0
CONTRIBUTIONS
0 Questions
3 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,422
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Answered
Cody Problem 38. Return a list sorted by number of occurrences
function output_array = popularity(input_array) %% First make unique array unique_input_array = unique(input_array); %% C...
Cody Problem 38. Return a list sorted by number of occurrences
function output_array = popularity(input_array) %% First make unique array unique_input_array = unique(input_array); %% C...
2 years ago | 0
Answered
Cody Problem 19. Swap the first and last columns
function B = swap_ends(A) B = A; k = B(:,1); B(:,1) = B(:,end); B(:,end) = k; end
Cody Problem 19. Swap the first and last columns
function B = swap_ends(A) B = A; k = B(:,1); B(:,1) = B(:,end); B(:,end) = k; end
2 years ago | 0
Answered
Cody Problem 14. Find the numeric mean of the prime numbers in a matrix.
function out = meanOfPrimes(in) primeTF = isprime(in); primeTFIndex = find(primeTF); x = []; for...
Cody Problem 14. Find the numeric mean of the prime numbers in a matrix.
function out = meanOfPrimes(in) primeTF = isprime(in); primeTFIndex = find(primeTF); x = []; for...
2 years ago | 0