Azzera filtri
Azzera filtri

3D Scattered volume data to surface plot?

1 visualizzazione (ultimi 30 giorni)
Matt H
Matt H il 29 Gen 2013
I am trying to visualize a 3D object in matlab (exported from modeling software), but the file is too big and spells instance RAM death if I try to use plot3 or scatter3 as-is. Any help would be appreciated, thanks. potato=[1E6 x 3] double
I'd like to use something like:
>>F = TriScatteredInterp(potato(:,1), potato(:,2), potato(:,3));
>>[qx, qy] = meshgrid(linspace(min(potato(:,1)), max(potato(:,1)), 100), ... linspace(min(potato(:,2)), max(potato(:,2)), 100));
>>qz = F(qx, qy);
>>mesh(qx, qy, qz);
But since x/y are non-unique, it's not really doing what I want. Thanks again, Matt

Risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by