Community Profile

photo

Gadadhar Sahoo


Active since 2017

Followers: 0   Following: 0

Statistics

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

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

6 years ago | 0 answers | 0

0

answers

Question


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)));

6 years ago | 1 answer | 0

1

answer

Question


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

6 years ago | 2 answers | 0

2

answers