필터 지우기
필터 지우기

3D Scattered volume data to surface plot?

조회 수: 1 (최근 30일)
Matt H
Matt H 2013년 1월 29일
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