我想标记神经网络工具箱中找到的虹膜数据集的plothitmap plotsomhits(net,inputs)
。我该怎么做我希望类标签叠加在plothitmap上。任何想法?它看起来像这样:
有可能吗?谢谢。
答案 0 :(得分:3)
如果内置函数显示 plotsom ... 功能不可用的标签,您可能需要考虑使用 annotationtextbox 功能在每个单元格上使用手动注释如link
中所述答案 1 :(得分:2)
如果你有每个类标签对应的坐标,你可以这样做:
plotsomhits(net,inputs);
text(x1,y1,label1); //this will put a text label superimposed on the current plot
当然,如果你有很多标签,那么你可以迭代for循环来添加标签。
以下是有关如何使用text
here.