photo

Rohit Sinha


Last seen: 2 years ago Active since 2022

Followers: 0   Following: 0

Statistics

MATLAB Answers

4 Questions
2 Answers

RANK
4,035
of 299,750

REPUTATION
13

CONTRIBUTIONS
4 Questions
2 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
6

RANK
 of 20,792

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 165,710

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • First Answer

View badges

Feeds

View by

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 3 answers | 0

3

answers

Answered
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 ago | 3

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 2 answers | 1

2

answers

Answered
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 ago | 2