Get the mean and standard deviation of the lower half of the first mode of a bimodal distribution
2 次查看(过去 30 天)
显示 更早的评论
Hi, I have a bimodal distribution (in the form of a vector) from which I want to fit a gaussian distribution to the lower half of the first mode and calculate the mean and standard deviation of that distribution.
Any advice?
0 个评论
采纳的回答
Image Analyst
2020-9-4
Here is code that uses fitnlm() to fit two Gaussians, and one that fits multiple Gaussians.
2 个评论
Stephen
2020-9-4
My Q doesn't apply to this specific thread (pls accept my apologies), but I don't know how else to contact Image Analyst. Some time back you helped out a user with a Q re: opening/closing an excel file from within MatLab. I'm having a devil of at time with the PlotInExcel function by Amit Doshi and am hoping you might shed some light. The problem is: I can't figure out how to save the file and quit Excel at the end of PlotInExcel. Consequently, I can't get back to my script. Excel just hangs open and I have to save/close it manually. Do you have any ideas? Any help would be greatly appreciated!
function PlotInExcel
x= {1:10};
a= cell2mat(x);
y= {1:10};
b= cell2mat(y);
%............plotting..............................................................................................
plot(a,b);
xlabel('X Values');
ylabel('Y Values');
print -dmeta; %.................Copying to clipboard
FILE = 'C:\DATA.xlsx';
Range='OX14';
%.............excel COM object............................................................................
Excel = actxserver ('Excel.Application');
Excel.Visible = 1;
if ~exist(FILE,'file')
ExcelWorkbook=Excel.Workbooks.Add;
ExcelWorkbook.SaveAs(FILE);
ExcelWorkbook.Close(false);
end
invoke(Excel.Workbooks,'Open',FILE); %Open the file
ActiveSheet = Excel.ActiveSheet;
ActiveSheetRange = get(ActiveSheet,'Range',Range);
ActiveSheetRange.Select;
ActiveSheetRange.PasteSpecial; %.................Pasting the figure to the selected location
%-----------------------------------end of function"PlotInExcel--------------------------------------
Image Analyst
2020-9-6
Stephen, add these lines:
Excel.ActiveWorkbook.Save;
Excel.Quit;
delete(Excel);
clear('Excel')
See attached utilities for Excel.
更多回答(1 个)
Abdolkarim Mohammadi
2020-9-2
编辑:Abdolkarim Mohammadi
2020-9-2
You can first determine the elements that are in the lower half
LowerHalfMask = Data <= mean(Data);
Then calculate the statistics
LowerHalfMean = mean(Data(LowerHalfMask));
LowerHalfStd = std(Data(LowerHalfMask));
To fit a distribution, you can first collect the elements of the lower half
LowerHalfValues = Data(LowerHalfMask);
Then use the Curve Fitting App (type cftool in the command window).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!