Community Profile

photo

Ekaterina Sadovaya


Last seen: 10 months ago Active since 2018

Followers: 0   Following: 0

Statistics

All
  • First Answer
  • Promoter
  • Solver
  • Thankful Level 1

View badges

Feeds

View by

Answered
find second minimum in a row in matlab without sorting
You can exclude the first minimum. So, for example for the first row it will be A1 = A(1,:); [first_min_value, index] = min(A1...

4 years ago | 2

Solved


Remove the air bubbles
Given a matrix a, return a matrix b in which all the zeros have "bubbled" to the top. That is, any zeros in a given column shoul...

4 years ago

Solved


Reverse the elements of an array
Reverse the order of elements in an array: eg: input X = [ 1 2 3 ; 4 5 6 ; 7 8 9 ] o...

6 years ago

Solved


Flip the main diagonal of a matrix
Given a n x n matrix, M, flip its main diagonal. Example: >> M=magic(5); >> flipDiagonal(M) 9 24 1 ...

6 years ago

Solved


Back to basics 23 - Triangular matrix
Covering some basic topics I haven't seen elsewhere on Cody. Given an input matrix, return a matrix with all elements above a...

6 years ago

Solved


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

6 years ago

Solved


Back to basics 21 - Matrix replicating
Covering some basic topics I haven't seen elsewhere on Cody. Given an input matrix, generate an output matrix that consists o...

6 years ago

Question


How to clear the whole field in edit text?
I have a GUI and one of it's function is to show some strings in edit text. It's working well, but only before the field ends. H...

6 years ago | 1 answer | 0

1

answer