photo

Ekaterina Sadovaya


Last seen: mer än 2 år ago Active since 2018

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

1 Question
1 Answer

Cody

0 Problems
6 Solutions

RANK
8 013
of 300 379

REPUTATION
6

CONTRIBUTIONS
1 Question
1 Answer

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
2

RANK
 of 20 931

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
48 018
of 168 299

CONTRIBUTIONS
0 Problems
6 Solutions

SCORE
80

NUMBER OF BADGES
2

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 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...

ungefär 6 år 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...

ungefär 6 år 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...

mer än 7 år 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 ...

mer än 7 år 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...

mer än 7 år 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...

mer än 7 år 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...

mer än 7 år 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...

mer än 7 år ago | 1 answer | 0

1

answer