photo

Mayank Bajpai


Last seen: 거의 3년 전 2020년부터 활동

Followers: 0   Following: 0

:)

통계학

All
  • MATLAB Central Treasure Hunt Finisher
  • Thankful Level 1
  • Knowledgeable Level 1
  • Sequences And Series I Master
  • Matrix Manipulation I Master
  • Tiles Challenge Master
  • Leader
  • Computational Geometry I Master
  • Project Euler I
  • Revival Level 1
  • First Answer
  • Cody Problems in Japanese Master

배지 보기

Feeds

보기 기준

질문


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...

3년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Moving Specific Values In Matrix By One Column
check this circshift(x,-1,2)

3년 초과 전 | 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.

3년 초과 전 | 1

질문


Global sensitivity analysis (moment based)
Is there any built-in matlab function for global sensitivity analysis (moment based like AMA) ?

3년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
Data interpolation using ANN
For Interpolation, try scatterdata interpolation For ANN, Simply go to APPS>Machine learning>Regression learner. Choose ...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 0