How do I turn data values with corresponding 3D coordinates into a 3D matrix?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Kim Folmer Andersen
il 11 Gen 2018
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 Commenti
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!