How do I turn data values with corresponding 3D coordinates into a 3D matrix?
1 回表示 (過去 30 日間)
古いコメントを表示
Currently, I have one 3x4935 matrix with xyz coordinates, and another 1x4935 matrix with force values. I want to have a 3D matrix with the force values at their corresponding xyz coordinates.
I also want to average the force values (non zero) that are at the same coordinate.
The xyz coordinates have already been rounded to the decimal that I want them using this following code.
translation = floor(trans) + (round((trans-floor(trans))/0.5)*0.5)
Thank you in advance!
0 件のコメント
回答 (1 件)
Kim Folmer Andersen
2018 年 1 月 11 日
take a look at plot3(x,y,z) for plotting the points. next decide how you want the forces applied. 4th argument to plot3 can be color (in normalized rgb), so thats one option. there is also quiver(x,y,z,u,v,w) for plotting arrows at all the points, but since you only have one value of force, what direction (u,v,w) do you want the arrow to point in?
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!