![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/9518280_1523894454503_DEF.jpg)
Gadadhar Sahoo
自 2017 起处于活动状态
Followers: 0 Following: 0
Feeds
提问
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 前 | 0 个回答 | 0
0
个回答提问
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 前 | 1 个回答 | 0
1
个回答提问
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 前 | 3 个回答 | 0