How can I use a cube as the boundaries for a line ?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have x,y and z extremes which i need to use to create a box (xlo,xhi,ylo,yhi,zlo,zhi). I need to then draw a random line inside the box and figure out the length of this line. I was thinking about manually creating the equations for the planes describing the box and finding out when they intersect with the line but I am not entirely sure how to accomplish this on matlab. Thank you!
댓글 수: 0
답변 (1개)
KSSV
2017년 8월 31일
To get (xlo,xhi,ylo,yhi,zlo,zhi):
[min(x) max(x) min(y) max(y) min(z) max(z)] ;
As you have (x,y,z) data, select any two points in random and plot line. You may select random point using randsample or randperm. Once you get two points, you can get length using norm. Or by calculating the distance between them.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!