
Mayank Bajpai
Followers: 0 Following: 0
:)
Statistics
RANK
4,117
of 297,827
REPUTATION
12
CONTRIBUTIONS
2 Questions
5 Answers
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
2
RANK
of 20,479
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Modulo of realmax in matlab
I am getting the same results for the following: mod(realmax,10^9 + 7) and mod(realmax-10000,10^9 + 7) or subtracting any other...
4 years ago | 1 answer | 0
1
answerMoving Specific Values In Matrix By One Column
check this circshift(x,-1,2)
4 years ago | 0
CALCULATE norms: l2 and l1 distances
check here L1 norm: norm(v,1) L2 norm: norm(v,2) norm between a and b: norm((b-a),p) where p can be 1,2 or inf.
4 years ago | 1
Question
Global sensitivity analysis (moment based)
Is there any built-in matlab function for global sensitivity analysis (moment based like AMA) ?
4 years ago | 0 answers | 0
0
answersData interpolation using ANN
For Interpolation, try scatterdata interpolation For ANN, Simply go to APPS>Machine learning>Regression learner. Choose ...
4 years ago | 1
| accepted
How to make plot smooth when we can not increase the x and y variables.
Instead of linear interpolation in the plot, try a spline interpolation? xx=linspace(min(x),max(x),50); yy=interp1(x,y,xx,'spl...
4 years ago | 0
| accepted
Plotting two vectors as a function of each other
I think, you have two simple options: use the scatter plot. i.e scatter(x,y) sort the data and then use plot. i.e te...
4 years ago | 0