photo

s.p4m


自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

2 个提问
6 个回答

排名
4,911
of 300,871

声誉
10

贡献数
2 个提问
6 个回答

回答接受率
100.0%

收到投票数
1

排名
 of 21,100

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,460

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已回答
While loop for sums?
sum=0; k=0; while(sum<=5*10^6) if(mod(k,2)) sum=sum+k^2; end k=k+1; end Next time please try...

9 years 前 | 0

已回答
How to represent each entry of a matrix by its own box with matlab
I found a script online which does exactly what I want <https://de.mathworks.com/matlabcentral/fileexchange/46010-grid-plot> ...

9 years 前 | 0

| 已接受

提问


How to represent each entry of a matrix by its own box with matlab
Hey everybody I want to know if is possible to make a pcolor plot where the color values isn't stored on the edges of the boxes...

9 years 前 | 2 个回答 | 0

2

个回答

已回答
Generate a vector X of 100 independent samples from Gaussian distribution
You could also use the <http://de.mathworks.com/help/stats/random.html random> comand X = random('norm',5,3,100,1);

9 years 前 | 0

已回答
for and if statements
small = 0; big = 0; mid = 0; test = random('Normal',1,100,1,10); for k = 1:length(test) if ( test(k) < 25 )...

9 years 前 | 0

已回答
I have 2 time series data, one is real data another is my plant model output, how can I calculate percentage of fitness?
You could use the <http://de.mathworks.com/help/ident/ref/compare.html?searchHighlight=compare compare> comand. For exam...

9 years 前 | 1

| 已接受

已回答
Random number time series
ln = 100; % length of timeseries Ts = 1; % timestep for k = 1:ln tmp_mean = 2+2*(k-1)/(ln-1); % your linear...

9 years 前 | 0

| 已接受

提问


compare vs forecast with models
I'm using ARMA-models to predict a signal. My signal is a timeseries with _n_ points; input = iddata(signal,[],Ts); My m...

9 years 前 | 1 个回答 | 0

1

个回答