photo

Abhinav


Last seen: 10 months 前 自 2023 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
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...

1 year 前 | 0

已回答
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

1 year 前 | 0

已回答
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...

1 year 前 | 0