フィルターのクリア

how to make gaussian plot??

2 ビュー (過去 30 日間)
khushboo chhikara
khushboo chhikara 2018 年 4 月 27 日
コメント済み: Walter Roberson 2018 年 4 月 30 日
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 件のコメント
khushboo chhikara
khushboo chhikara 2018 年 4 月 27 日
Walter Roberson
Walter Roberson 2018 年 4 月 30 日
Please do not close questions that have an answer

サインインしてコメントする。

採用された回答

KSSV
KSSV 2018 年 4 月 27 日
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 件のコメント
KSSV
KSSV 2018 年 4 月 27 日
That's the plot of the data present in the excel file.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by