![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/9518280_1523894454503_DEF.jpg)
Gadadhar Sahoo
Followers: 0 Following: 0
Statistics
3 Questions
0 Answers
RANK
211,737
of 297,046
REPUTATION
0
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
33.33%
VOTES RECEIVED
0
RANK
of 20,422
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157,776
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
Feeds
Question
how to plot a 2D gaussian in a graph using surf
clear clc load (fullfile('C:\Users\CHINMAYEE\Desktop\Datasets\red_data.txt')) size(red_data) [N, M] = size(red_dat...
7 years ago | 0 answers | 0
0
answersQuestion
how to plot a gaussian1D for probability density of the normal distribution
gaussian = (1/sqrt(2*pi*vars(k)))*exp(-(x(p)-means(k)).^2/(2*vars(k)));
7 years ago | 1 answer | 0
1
answerQuestion
how to plot a gaussian 1D in matlab
for k = 1 : K ax = linspace(min_x,max_x,100); y = my_gaussian(x,means,vars); plot(ax,y); end
7 years ago | 3 answers | 0