Legend Scatter

LEGENDSCATTER: workaround for R2016a and later for scatter plot legend.
ダウンロード: 215
更新 2017/9/2

ライセンスの表示

This function aims to simplify the creation of a legend for scatter plots.
The function will plot a legend on current axis with the right
markersize proportion.
NB. From version 1.0.5 is added the compatibility with previous MATLAB
version.
-------------------------------------------- INPUTS
- TextCell: a cell array containing the legend-entry text.
WARNING: THE FIRST CELL IS THE TITLE !!!
- SizeDim: the ''MarkerSize'' dimension for each entry.
WARNING: length(SizeDim)==length(TextCell)-1 !!!

- Factor: normaling factor for enlarge the marker size in
a linear way. (MarkerSize*sqrt(Factor)

- LinSpec: specify the marker-string.

-------------------------------------------- EXAMPLE
Factor=1.5;
A=[1,1,1;
2,2,2;
3,3,3;
4,4,4;
5,5,5;
6,6,6;
7,7,7;
8,8,8;
9,9,9;
10,10,10];

sh=scatter(A(:,1),A(:,2),(A(:,3).^2)*Factor,'ok');
%scattersize==MarkerSize*sqrt(Factor)pt)
leg=LEGENDSCATTER({'SIZE','1','2','3','4','5', ...
'6','7','8','9','10'},[1:1:10],Factor,'ok');
leg.Location='NorthWest'; axis([0,11,0,11])

-------------------------------------------- INFO
VERSION:1.0.5
AUTHOR: Matteo Bagagli - ETH-Zurich // Oct. 2016
MAIL: matteo.bagagli@erdw.ethz.ch

引用

Matteo Bagagli (2024). Legend Scatter (https://www.mathworks.com/matlabcentral/fileexchange/59425-legend-scatter), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2016a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
謝辞

ヒントを与えたファイル: velest2mat

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.5.0

Added compatibility with previous MATLAB releases.
Improved help.
Improved help

1.0.0.0