Community Profile

photo

Blaze Shah


Last seen: 2 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计数据

All
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已解决


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

2 years 前

已回答
I get an error, what's wrong? on Sparse matrix logic and answer
function matrix = sparse2matrix(cellvec) jj = cell2mat(cellvec); m = jj(3)*ones(jj(1,[1,2])); n = 4; while n<=length(jj) ...

2 years 前 | 0

已解决


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

2 years 前

已解决


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

2 years 前