Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Matlab 中有一个散点图, scatter(xData,yData) 我希望每个标记的大小与给定的数据数组 ( zData) 成比例,其中 zData 与 xData 和 yData 的长度相同。
scatter(xData,yData)
zData
建议?谢谢!
只需使用
scatter(xData,yData,zData)