I need help converting this 3d plot to a surface
27 ビュー (過去 30 日間)
古いコメントを表示
I have data tables from excel with the pressure, temperature, and entropy data for water that I got from a thermodynamics textbook. Im supposed to turn it into a surface I can 3d print, but im having trouble converting it frm a 3d plot to an actual surface.
Here is the 3d plot
and here is the plot3 code
This is some of my data.
Any help would be appriciated, im pretty stuck on this.
0 件のコメント
回答 (1 件)
Star Strider
2024 年 12 月 3 日 22:58
Plotting it as a surface will probably require creating matrices from the vectors. Just looking at the images, that will probably require using the reshape function, with the same matrix-size arguments for each vector, so that they all have the same diimensions.
Then, it gets complicated, because you may need to create a STL file to give to your 3D printer. Creating the surface would require the trisurf function, and then the stlwrite function to save it in the appropriate format.
I have very limited experience with this procedure, so you will need to experiment with it yourself.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!