⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 geoall.m

📁 这是几何代数的matlab工具包
💻 M
字号:
function r = geoall(A,B)% geoall(A,B): Compute the geometric relationships between the blades A and B% Return a structure with the following fields%   obj1 = A%   obj2 = B%   comp = orthogonal complement of A in B%   proj = projection of A onto B%   rej  = rejection of A by B%   meet = meet (i.e. intersection) of A and B%   join = join (i.e. union) of A and B%%See also gable, drawall.% GABLE, Copyright (c) 1999, University of Amsterdam% Copying, use and development for non-commercial purposes permitted.%          All rights for commercial use reserved; for more information%          contact Leo Dorst (leo@wins.uva.nl).%%          This software is unsupported.   if grade(GA(A)) == -1 & grade(GA(B)) == -1      error('A and B should be pure blades')   end   r.obj1 = A;   r.obj2 = B;   r.comp = contraction(A,B);     r.proj = r.comp/B;   r.rej = A - r.proj;   r.meet = meet(A,B);   r.join = join(A,B);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -