photo

Rohit Sinha


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

Followers: 0   Following: 0

统计学

MATLAB Answers

4 个提问
2 个回答

排名
4,074
of 300,137

声誉
13

贡献数
4 个提问
2 个回答

回答接受率
50.0%

收到投票数
6

排名
 of 20,878

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 167,493

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • First Answer

查看徽章

Feeds

排序方式:

提问


How to fit a cumulative normal distribution into a smooth curve?
I have computed the normal cumulative distribution values for a certain set of data. The data is as follows: x = [0.005 0....

3 years 前 | 1 个回答 | 0

1

个回答

提问


How do I convert a non-normal distribution to an equivalent normal distribution?
I am working with probability distributions using multivariate equations. At times some of the variables are not normally distri...

3 years 前 | 3 个回答 | 0

3

个回答

已回答
how to set y-axis as log scale?
The easiest way to do this is simply use the following command instead of plot semilogy(x,y); This will plot x axis on a ...

3 years 前 | 3

提问


How do I use Cut-HDMR in MATLAB?
Hi, I wish to use Cut-HDMR (HDMR = High Dimensional Model Representaion) to solve multivariate piecewise continuous functions. I...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How do I plot a multivariate piecewise continuous function?
Hi, I wish to plot a mesh and a contour of multivariate piecewise continuous functions but everytime I try something, I end up g...

3 years 前 | 2 个回答 | 1

2

个回答

已回答
Generating piecewise function and plotting it
You could try this method syms x %makes x a symbolic variable f= piecewise(x<-1, -1, x>=-1 & x<2, x^2+x, x>=2 & x<4, -x+2, x...

3 years 前 | 2