Advertisement
Guest User

1

a guest
May 19th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Octave 0.47 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. #a.b=|a|.|b|cos(temp)
  12. temp=abs(acos((dot(v1,v2)/(norm(v1)*norm(v2)))*180/pi)); #rad deg
  13. printf("%f\n",temp);
  14. temp2=cross(v1,v2); #cross
  15. temp3=0.5*norm(temp2);
  16. print("%f\n",temp3);
  17. temp2=temp2 ./ temp2(1);
  18. printf("%f %f %f",temp2(1),temp2(2),temp2(3));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement