using the "vline" function in a histogram
显示 更早的评论
I'm trying to insert a break point horizontal line in 2 histograms. The line commented out in the script below didn't work. What am I doing wrong in terms of using vline? Thanks.
% control condition
nbins = 15;
histfit (resultC{13}*100, nbins)
title('Probability Distribution for Control Condition')
xlabel('Percentage Accuracy')
ylabel('Number of Permutations')
*% h = vline(resultC{3},'g','Classification Accuracy')*
% experimental condition
figure()
nbins = 15;
histfit (resultE{13}*100, nbins)
title('Probability Distribution for Experimental Condition')
xlabel('Percentage Accuracy')
ylabel('Number of Permutations')
1 个评论
Steven Lord
2017-5-19
Define "didn't work." Did it throw an error (and if so, what was the full text of that error message, everything in red?) Did it issue a warning (and if so, everything in orange?) Did it do something else (and if so, explain in more detail?)
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 F Distribution 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!