3D Scattered volume data to surface plot?

1 次查看(过去 30 天)
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

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by