Borrar filtros
Borrar filtros

how to make gaussian plot??

3 visualizaciones (últimos 30 días)
khushboo chhikara
khushboo chhikara el 27 de Abr. de 2018
Comentada: Walter Roberson el 30 de Abr. de 2018
Th excel file given is the data of different intensities of particles when hit on a surface(fluorescence intensity file sample) . Consider the row and column as the x and y coordinates. Through a MATLAB program, first, make or set a Gaussian plot/distribution t various areas in the data file and get maximum values of the intensities and the output of the MATLAB function should be the value of maximum intensities with x and y coordinate of that intensities. Note this program should run in any input excel file. The data of excel file can change. Therefore the MATLAB code and the Gaussian function we create should work on any data points.
  5 comentarios
khushboo chhikara
khushboo chhikara el 27 de Abr. de 2018
Walter Roberson
Walter Roberson el 30 de Abr. de 2018
Please do not close questions that have an answer

Iniciar sesión para comentar.

Respuesta aceptada

KSSV
KSSV el 27 de Abr. de 2018
filename='14 - sampleMap.xls';
[num,txt,raw] = xlsread(filename);
[nx,ny] = size(num) ;
[X,Y] = meshgrid(1:nx,1:ny) ;
pcolor(X,Y,num) ;
shading interp
  1 comentario
KSSV
KSSV el 27 de Abr. de 2018
That's the plot of the data present in the excel file.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Bar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by