📄 triple_product.m
字号:
% triple product of three vectors (a x b) c
% corresponds to the volume spanned by them
function[volume] = triple_product(a,b,c)
volume = c(1)*(a(2)*b(3) - b(2)*a(3)) + c(2)*(a(3)*b(1) - b(3)*a(1)) + ...
c(3)*(a(1)*b(2) - b(1)*a(2));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -