方式1 select name, sum(case when subject=‘语文’ then score else 0 end) as chinese, sum(case when subject=‘数学’ then score else 0 end) as math from test group by name
Title: 因子图、边缘化与消元算法的抽丝剥茧 —— Notes for “Factor Graphs for Robot Perception” 文章目录 I. 前言II. 因子图的基本概念1. 因子图的定义2. SLAM 中的因子图A. 因子图的图示B. 因子图的因式C. 因子图的二分图形式 III. 边缘化与消元运算的基本原理1. 边缘化…