Plot a HeatMap in Matlab GUI
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello I want to plot a HeatMap into axes handles in Matlab GUI
Here's my code :
hit=HeatMap(hm,'RowLabels',rl,'ColumnLabels',cl,'ColorMap',redbluecmap,'Symmetric',false);
axes(handles.axes_HM);
pl=plot(hit);
And here is the error :
??? Error using ==> figure
Invalid property found.
Object Name : figure
Property Name : 'PagePosition'.
Error in ==> HeatMap.plot at 42
hFig = figure('Renderer', 'ZBuffer',...
Error in ==> one>my_list_Callback at 96
pl=plot(hit);
Error in ==> gui_mainfcn at 96
feval(varargin{:});
Error in ==> one at 42
gui_mainfcn(gui_State, varargin{:});
Error in ==>
@(hObject,eventdata)one('my_list_Callback',hObject,eventdata,guidata(hObject))
??? Error while evaluating uicontrol Callback
What is wrong ?
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!