How to plot heatmap using gpuArray?

1 Ansicht (letzte 30 Tage)
Arjun Tejani
Arjun Tejani am 22 Mär. 2021
Beantwortet: Joss Knight am 24 Mär. 2021
Hello,
I am having 6000 cordinates of (x,y) Locations and each has particular values. I want to plot a heatmap.
For now I am using :
[X,Y] =meshgrid(x,y);
F= scatteredInterpolant(x,y,zi);
contourf(X,Y,F(X,Y),100,'LineColor','none')
which is taking almost 3-4 minutes to plot a heatmap. I was hoping to use gpuArray function. But it seems not working :/

Antworten (1)

Joss Knight
Joss Knight am 24 Mär. 2021
Sorry, scatteredInterpolant doesn't support gpuArray.

Kategorien

Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by