필터 지우기
필터 지우기

vector of X values contains duplicate values

조회 수: 28 (최근 30일)
maxence rateaux
maxence rateaux 2018년 4월 23일
답변: Benjamin Großmann 2018년 4월 23일
I would like to plot an heatmap (with polar coordinate rho/theta) but when I plot the heatmap i've got this error message: "vector of x values contains duplicate values"
heatmap (rho, theta, Latency)

답변 (1개)

Benjamin Großmann
Benjamin Großmann 2018년 4월 23일
The heatmap functions first two arguments are in this context the labels for the x-axis and y-axis. These have to be unique and can also be of char type. I.e.
heatmap({'A','B','C'},[5 6 7],rand(3))

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by