![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/11169278_1540684019326.jpg)
Ekaterina Sadovaya
Followers: 0 Following: 0
Statistics
All
RANK
7,897
of 297,016
REPUTATION
6
CONTRIBUTIONS
1 Question
1 Answer
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
2
RANK
of 20,419
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
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...
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...
5 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...
5 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...
7 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 ...
7 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...
7 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...
7 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...
7 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...
7 years ago | 1 answer | 0