Mesh graph, Legend ?

조회 수: 18 (최근 30일)
parnal patni
parnal patni 2018년 12월 6일
답변: Ananya Tewari 2020년 6월 18일
How to put legend for Mesh Graph. The colours in the mesh graph should be added in the legend describing which colour stands for what context?
How should I achieve this function?

답변 (1개)

Ananya Tewari
Ananya Tewari 2020년 6월 18일
Hi,
Legends can be added to all sorts of graph present in MATLAB.
You can have a look at
%Here is an example from the docs
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(X,Y,Z)
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(X,Y,Z)
legend({'z axis'})
Alternatively,
you can go through this MATLAB answer to have more idea about it, here the user also wants to add legend but with different surfaces

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by