Not really understanding why cdata isn't working

11 visualizaciones (últimos 30 días)
Stride Okorie
Stride Okorie el 27 de Jul. de 2022
Respondida: Walter Roberson el 27 de Jul. de 2022
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';

Respuestas (2)

Star Strider
Star Strider el 27 de Jul. de 2022
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 el 27 de Jul. de 2022
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.

Categorías

Más información sobre Data Distribution Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by