Ekaterina Sadovaya - MATLAB Central
photo

Ekaterina Sadovaya


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

Followers: 0   Following: 0

统计学

All
CodyMATLAB AnswersFrom 03/18 to 04/25Use left and right arrows to move selectionFrom 03/18Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 个提问
1 个回答

Cody

0 个问题
6 个答案

排名
7,892
of 298,292

声誉
6

贡献数
1 个提问
1 个回答

回答接受率
100.0%

收到投票数
2

排名
 of 20,560

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
45,978
of 160,775

贡献数
0 个问题
6 个答案

评分
80

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer
  • Promoter
  • Solver
  • Thankful Level 1

查看徽章

Feeds

排序方式:

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

已解决


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 前

已解决


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 前

已解决


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 前

已解决


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 前

已解决


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 前

已解决


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 前

提问


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 前 | 1 个回答 | 0

1

个回答