我想标记plotsomhits(net,inputs)
在神经网络工具箱中找到的 iris 数据集的 plothitmap。我该怎么做。我希望将类标签叠加在 plothitmap 上。有什么想法吗?它看起来像这样:
有可能吗?谢谢。
我想标记plotsomhits(net,inputs)
在神经网络工具箱中找到的 iris 数据集的 plothitmap。我该怎么做。我希望将类标签叠加在 plothitmap 上。有什么想法吗?它看起来像这样:
有可能吗?谢谢。
如果显示标签的内置函数不适用于plotsom...函数,您可能需要考虑使用annotationtextbox函数在每个单元格上使用手动注释,如此链接中所述
如果你有每个类标签对应的坐标,你可以这样做:
plotsomhits(net,inputs);
text(x1,y1,label1); //this will put a text label superimposed on the current plot
当然,如果你有很多标签,那么你可以遍历一个 for 循环来添加标签。
这是有关如何在text
此处使用的文档的链接。