필터 지우기
필터 지우기

Not really understanding why cdata isn't working

조회 수: 6 (최근 30일)
Stride Okorie
Stride Okorie 2022년 7월 27일
답변: Walter Roberson 2022년 7월 27일
This code I have is giving me an error saying cdata is not a recognizable function. If anyone could help me understand why, it would really be helpful please.
clc;
clear;
close all;
DataTbl=readtable('N303_M.2.csv');
[Ro,Co]=size(DataTbl);
Data=table2array(DataTbl);
latitude=Data(:,1);
longitude=Data(:,2);
altitude=Data(:,3);
h = heatmap(cdata,'ColorLevels', 5);
h.XLabel = 'Longitude';
h.YLabel = 'Latitude';

답변 (2개)

Star Strider
Star Strider 2022년 7월 27일
The ‘cdata’ matrix only exists if you create it.
See the heatmap documentation section Create Heatmap from Matrix Data for details, since that appears to be what you’re referring to.

Walter Roberson
Walter Roberson 2022년 7월 27일
heatmap can be called in two different ways.
If you call it with a 2d numeric array, then a map is constructed that is the same size as the array and the array values are relative intensities. This is the mode that your code is trying to use.
If, however, you have a table() object, then you can pass in the table and the names of two variables, and heatmap() will count all of the times that each combination of the two variables occurs and will create a heatmap of the results. This might be the form that you actually need.

카테고리

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