Advertisement
Guest User

ข้อแรก

a guest
May 19th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Octave 0.45 KB | None | 0 0
  1. #input
  2.  
  3. x=cellfun("str2double",strsplit(input('' ,'s')));
  4. y=cellfun("str2double",strsplit(input('' ,'s')));
  5. z=cellfun("str2double",strsplit(input('' ,'s')));
  6.  
  7. #vec
  8. v1=y .- x;
  9. v2=z .- x;
  10. #print("%f %f",v1,v2);
  11. temp=abs(acos((dot(v1,v2)/(norm(v1)*norm(v2))))*180/pi); #rad deg
  12. printf("%f\n",temp);
  13. temp2=cross(v1,v2); #cross
  14. temp3=0.5*norm(temp2);
  15. print("%f\n",temp3);
  16. temp2=temp2 ./ temp2(1);
  17. printf("%f %f %f",temp2(1),temp2(2),temp2(3));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement