a figure with only a numeric value
1 次查看(过去 30 天)
显示 更早的评论
I want to find the correlation between two data sets and just have a figure without any points or anything it just displays the correlation value. This might seem odd by itself but its part of a bigger picture for me
2 个评论
madhan ravi
2020-6-8
Why do you keep asking the same question again and again? Can’t you explain in a detailed manner in one question?
采纳的回答
per isakson
2020-6-8
Is this close to what you are asking for?
lh = plot( 0.5, 0.82, 'd' );
ah = lh.Parent;
ah.XTickLabels = cell(1,1);
ah.YTickLabels = cell(1,1);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!