photo

Sakz


Last seen: 8 months 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

2 个提问
3 个回答

Cody

0 个问题
3 个答案

排名
20,568
of 300,414

声誉
2

贡献数
2 个提问
3 个回答

回答接受率
0.0%

收到投票数
1

排名
 of 20,954

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
74,606
of 168,667

贡献数
0 个问题
3 个答案

评分
40

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已解决


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

3 years 前

已解决


Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...

4 years 前

已解决


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

4 years 前

提问


Uistack giving error with yyaxis
I am getting an error when I am trying to move the line plotted on yyaxis (right) to the bottom, so that line plotted on y axis ...

4 years 前 | 0 个回答 | 0

0

个回答

提问


Simulink runs slower on Matlab 2017b
I am running the "Exact Same Simulink Model" on Matlab 2013b & 2017B . However, the performance on thses two versions are very d...

6 years 前 | 0 个回答 | 0

0

个回答

已回答
Merging data from multiple CSV files
You can follow the following steps: Case-1) if uncommon columns are in the same order then you can read .csv files one by one u...

6 years 前 | 0

已回答
Extracting X axis and Y axis data from spectrogram figure
Spectrogram doesn't give you "Plot Lines" on axes. What you get is an "Image".

6 years 前 | 0

已回答
Mouse Problem: Why do I keep getting the error message, "Array indices must be positive integers or logical values."?
The source of error is in : x(mod(i+1,5)) when i=4, then mod(5,5) = 0; then x(0) is causing the error. Matlab vector index st...

6 years 前 | 1