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中更改maloglog图的数据点大小?
我可以用scatter(X,Y,S).
scatter(X,Y,S)
但是maloglog有可能吗?
当然,生成你的情节,说
h=maloglog(Red,Green,'title','Red vs Green','FactorLines',3,'LABELS',maStruct.Names);
要将标记形状更改为o's:
o
set(h,'Marker', 'o');
或者,根据您的问题,更改大小:
set(h, 'MarkerSize', 10)
或者,将 10 设置为您喜欢的任何大小。