photo

Rohit Sinha


Last seen: 2년 초과 전 2022년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

4 질문
2 답변

순위
4,030
of 300,364

평판
13

참여
4 질문
2 답변

답변 채택
50.0%

획득한 표
6

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,407

참여
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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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년 초과 전 | 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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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년 초과 전 | 2