文章目录

  • The Properties Of Determinants
  • The Methods To Culculate Determinants
  • Cramers's Rule, Inverses and Volumes
  • 行列式的几何意义

The Properties Of Determinants

  • 行列式的表示: det A A A 或者 | A A A|

1. n by n 的单位阵的行列式是1
∣ 1 0 ⋯ 0 0 1 ⋯ 0 ⋮ ⋮ ⋱ ⋮ 0 0 ⋯ 1 ∣ = 1 \left| \begin{matrix} 1 & 0 & \cdots & 0 \\0 & 1 & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\ 0 &0 & \cdots & 1\\ \end{matrix} \right|=1 ∣∣∣∣∣∣∣∣∣​10⋮0​01⋮0​⋯⋯⋱⋯​00⋮1​∣∣∣∣∣∣∣∣∣​=1

2. 如果方阵的两行互换,则行列式的符号改变,变成相反数
− ∣ a b c d ∣ = ∣ c d a b ∣ -\left| \begin{matrix} a & b \\ c & d \end{matrix} \right|= \left| \begin{matrix} c & d \\ a& b \end{matrix} \right| −∣∣∣∣​ac​bd​∣∣∣∣​=∣∣∣∣​ca​db​∣∣∣∣​

3. 行列式是 行 的线性函数
∣ t a t b c d ∣ = t ∣ a b c d ∣ \left| \begin{matrix} ta & tb \\ c & d \end{matrix} \right|= t\left| \begin{matrix} a & b \\ c & d \end{matrix} \right| ∣∣∣∣​tac​tbd​∣∣∣∣​=t∣∣∣∣​ac​bd​∣∣∣∣​

∣ a + a ′ b + b ′ c d ∣ = ∣ a b c d ∣ + ∣ a ′ b ′ c d ∣ \left| \begin{matrix} a+a' & b+b' \\ c & d \end{matrix} \right|= \left| \begin{matrix} a & b \\ c & d \end{matrix} \right|+ \left| \begin{matrix} a' & b' \\ c & d \end{matrix} \right| ∣∣∣∣​a+a′c​b+b′d​∣∣∣∣​=∣∣∣∣​ac​bd​∣∣∣∣​+∣∣∣∣​a′c​b′d​∣∣∣∣​

4. 如果有两行相等 ,则行列式为0
∣ a b a b ∣ = 0 \left| \begin{matrix} a & b \\ a & b \end{matrix} \right|=0 ∣∣∣∣​aa​bb​∣∣∣∣​=0

5. 一行乘以一个数加到另一行,行列式不变
∣ a b c − ρ a d − ρ b ∣ = ∣ a b c d ∣ \left| \begin{matrix} a & b \\ c-\rho a & d-\rho b \end{matrix} \right|= \left| \begin{matrix} a & b \\ c & d \end{matrix} \right| ∣∣∣∣​ac−ρa​bd−ρb​∣∣∣∣​=∣∣∣∣​ac​bd​∣∣∣∣​

6. 有全0行的方阵 的行列式为0
∣ 0 0 c d ∣ = 0 \left|\begin{matrix} 0 & 0\\ c & d \end{matrix} \right|=0 ∣∣∣∣​0c​0d​∣∣∣∣​=0

7. 三角阵的行列式:对角元素乘积
∣ a 0 c d ∣ = a d ∣ a b 0 d ∣ = a d \left|\begin{matrix} a & 0\\ c & d \end{matrix} \right|=ad\space\space\space\space\space\space\space\space \left| \begin{matrix} a & b\\ 0 & d \end{matrix} \right|=ad ∣∣∣∣​ac​0d​∣∣∣∣​=ad        ∣∣∣∣​a0​bd​∣∣∣∣​=ad

8. 如果行列式为0,方阵是奇异矩阵(不可逆)。如果方阵可逆,行列式不为0

9. A B AB AB的行列式等于 A A A的行列式乘以 B B B的行列式
∣ A B ∣ = ∣ A ∣ ∣ B ∣ |AB|=|A||B| ∣AB∣=∣A∣∣B∣

10. A A A转置的行列式等于 A A A的行列式(意味着以上的性质也适应于列)
∣ A T ∣ = ∣ A ∣ |A^T|=|A| ∣AT∣=∣A∣


The Methods To Culculate Determinants

  • Big Formula(其实是一个公式)

1. n ∗ n n*n n∗n的矩阵有 n ! n! n!项 ,一半是正数,一半是负数,
2 ∗ 2 方 阵 ∣ a b c d ∣ = a d − b c 2*2方阵\space\space\space\space\space\space\space\space \left|\begin{matrix} a & b\\ c & d \end{matrix} \right|=ad-bc 2∗2方阵        ∣∣∣∣​ac​bd​∣∣∣∣​=ad−bc
3 ∗ 3 方 阵 ∣ a 11 a 12 a 13 a 21 a 22 a 23 a 31 a 32 a 33 ∣ = a 11 a 22 a 33 + a 12 a 23 a 31 + a 13 a 21 a 32 − a 11 a 23 a 32 − a 12 a 21 a 33 − a 13 a 22 a 31 3*3方阵\space\space\space\space \left|\begin{matrix} a11 & a12 &a13 \\ a21 & a22 & a23 \\ a31 & a32 & a33 \end{matrix} \right|=a11 a22 a33+a12a23a31+a13a21a32-a11a23a32-a12a21a33-a13a22a31 3∗3方阵    ∣∣∣∣∣∣​a11a21a31​a12a22a32​a13a23a33​∣∣∣∣∣∣​=a11a22a33+a12a23a31+a13a21a32−a11a23a32−a12a21a33−a13a22a31

2. 有时候可以进行快速计算,我们遵循一个原则:每项中的entry来自不同的行和列,所有可能结果之和就是行列式。如:4*4方阵,每项有4个entrys
[ 1 0 a 0 0 1 b 0 0 0 c 0 0 0 d 1 ] \left[ \begin{matrix} 1 & 0&a &0\\ 0 & 1 & b&0\\ 0& 0 & c&0\\ 0 & 0 & d&1 \end{matrix} \right] ⎣⎢⎢⎡​1000​0100​abcd​0001​⎦⎥⎥⎤​

  • 第 1、2、4列只能选1,其他都是0,第三列我们可以选 a b c d,但是,1 2 4 行已经有值,所以只能选c。只有一种可能:1 1 c 1,行列式为c
  • 如果经过换列或者行才能将entry都放在对角上,变换次数是偶数,行列式不变,变换次数是奇数,行列式还需要乘以-1。如下:

    [ 1 0 a 0 0 1 b 0 0 1 c 0 0 0 d 1 ] \left[ \begin{matrix} 1 & 0&a &0\\ 0 & 1 & b&0\\ 0& 1& c&0\\ 0 & 0 & d&1 \end{matrix} \right] ⎣⎢⎢⎡​1000​0110​abcd​0001​⎦⎥⎥⎤​
    那么可选择的有下面两个,但是右边的需要第二列 和第三列互换,才能得到对角矩阵,所以行列式为-b。最终结果加起来:c-b
    [ 1 0 0 0 0 1 0 0 0 0 c 0 0 0 0 1 ] [ 1 0 0 0 0 0 b 0 0 1 0 0 0 0 0 1 ] \left[ \begin{matrix} 1 & 0&0&0\\ 0 & 1 &0&0\\ 0& 0& c&0\\ 0 & 0 & 0&1 \end{matrix} \right] \space\space\space\space\space\space\space \left[ \begin{matrix} 1 & 0&0&0\\ 0 & 0& b&0\\ 0& 1& 0&0\\ 0 & 0 & 0&1 \end{matrix} \right] ⎣⎢⎢⎡​1000​0100​00c0​0001​⎦⎥⎥⎤​       ⎣⎢⎢⎡​1000​0010​0b00​0001​⎦⎥⎥⎤​

  • Cofactors(余子式)
  1. 余子式:设一个entry为 a i j aij aij,去掉其所在的行和列,剩下的SubMatrix 的行列式,记作: M i j Mij Mij

  2. 一个方阵的行列式等于 任意一行的的各元素与其对应的代数式余子式乘积之和。Mij 的系数是 ( − 1 ) i + j (-1)^{i+j} (−1)i+j
    ∣ a 11 a 12 a 13 a 21 a 22 a 23 a 31 a 32 a 33 ∣ = ∣ a 11 a 22 a 23 a 32 a 33 ∣ + ∣ a 12 a 21 a 23 a 31 a 33 ∣ + ∣ a 13 a 21 a 22 a 31 a 32 ∣ = a 11 M 11 + ( − 1 ) a 12 M 12 + a 13 M 13 \left|\begin{matrix} a11 & a12 &a13 \\ a21 & a22 & a23 \\ a31 & a32 & a33 \end{matrix} \right|=\left|\begin{matrix} a11 & & \\ & a22 & a23 \\ & a32 & a33 \end{matrix} \right|+\left|\begin{matrix} & a12 & \\ a21 & & a23 \\ a31 & & a33 \end{matrix} \right|+\left|\begin{matrix} & &a13 \\ a21 & a22 & \\ a31 & a32 & \end{matrix} \right| = a11M11 +(-1)a12M12+a13M13 ∣∣∣∣∣∣​a11a21a31​a12a22a32​a13a23a33​∣∣∣∣∣∣​=∣∣∣∣∣∣​a11​a22a32​a23a33​∣∣∣∣∣∣​+∣∣∣∣∣∣​a21a31​a12​a23a33​∣∣∣∣∣∣​+∣∣∣∣∣∣​a21a31​a22a32​a13​∣∣∣∣∣∣​=a11M11+(−1)a12M12+a13M13

如:
∣ 2 − 1 − 1 2 − 1 − 1 2 − 1 − 1 2 ∣ = 2 ∗ ∣ 2 − 1 − 1 2 − 1 − 1 2 ∣ − ( − 1 ) ∗ ∣ − 1 − 1 2 − 1 − 1 2 ∣ \left|\begin{matrix} 2& -1 & &&\\ -1 &2&-1& \\ & -1 & 2&-1\\ &&-1&2 \end{matrix} \right|=2*\left|\begin{matrix} 2 & -1&\\ -1 & 2 & -1 \\ & -1& 2 \end{matrix} \right|-(-1)*\left|\begin{matrix} -1 & -1&\\ & 2 & -1 \\ & -1& 2 \end{matrix} \right| ∣∣∣∣∣∣∣∣​2−1​−12−1​−12−1​−12​∣∣∣∣∣∣∣∣​=2∗∣∣∣∣∣∣​2−1​−12−1​−12​∣∣∣∣∣∣​−(−1)∗∣∣∣∣∣∣​−1​−12−1​−12​∣∣∣∣∣∣​


Cramers’s Rule, Inverses and Volumes

  • Cramer’s Rule

1. 如果 A A A的行列式不是0, A x = b Ax=b Ax=b 可以用行列式来解

Key idea:
[ a 1 a 2 a 3 ] [ x 1 0 0 x 2 1 0 x 3 0 1 ] = [ b 1 a 12 a 13 b 2 a 22 a 23 b 3 a 32 a 33 ] = B 1 \left[\begin{matrix} & &\\ a1& a2 & a3 \\ & & \end{matrix} \right]\left[\begin{matrix} x1& 0&0\\ x2& 1 & 0 \\ x3& 0& 1 \end{matrix} \right]=\left[\begin{matrix} b1& a12&a13\\ b2& a22 & a23 \\ b3& a32& a33 \end{matrix} \right]=B1 ⎣⎡​a1​a2​a3​⎦⎤​⎣⎡​x1x2x3​010​001​⎦⎤​=⎣⎡​b1b2b3​a12a22a32​a13a23a33​⎦⎤​=B1

设中间矩阵为 X X X

d e t ( A ) d e t ( X ) = d e t ( B 1 ) det(A)det(X)=det(B1) det(A)det(X)=det(B1)
d e t ( A ) x 1 = d e t ( B 1 ) det(A)x1=det(B1) det(A)x1=det(B1)
x 1 = d e t ( B 1 ) / d e t ( A ) x1=det(B1)/det(A) x1=det(B1)/det(A)

同理:
[ a 1 a 2 a 3 ] [ 1 x 1 0 0 x 2 0 0 x 3 1 ] = [ a 1 b a 3 ] = B 2 \left[\begin{matrix} & &\\ a1& a2 & a3 \\ & & \end{matrix} \right]\left[\begin{matrix} 1& x1&0\\ 0& x2 & 0 \\ 0& x3& 1 \end{matrix} \right]=\left[\begin{matrix} & &\\ a1&b & a3 \\ & & \end{matrix} \right]=B2 ⎣⎡​a1​a2​a3​⎦⎤​⎣⎡​100​x1x2x3​001​⎦⎤​=⎣⎡​a1​b​a3​⎦⎤​=B2

x 2 = d e t ( B 2 ) / d e t ( A ) x2=det(B2)/det(A) x2=det(B2)/det(A)

同理:

x 3 = d e t ( B 3 ) / d e t ( A ) x3=det(B3)/det(A) x3=det(B3)/det(A)

例题

3 x 1 + 4 x 2 = 2 5 x 1 + 6 x 2 = 4 \begin{array}{l} 3x1+4x2=2\\ 5x1+6x2=4 \end{array} 3x1+4x2=25x1+6x2=4​

d e t A = ∣ 3 4 5 6 ∣ d e t B 1 = ∣ 3 4 5 6 ∣ d e t B 2 = ∣ 3 4 5 6 ∣ det A=\left|\begin{matrix} 3& 4\\ 5& 6 \end{matrix} \right|\space \space det B1=\left|\begin{matrix} 3& 4\\ 5& 6 \end{matrix} \right|\space \space det B2=\left|\begin{matrix} 3& 4\\ 5& 6 \end{matrix} \right| detA=∣∣∣∣​35​46​∣∣∣∣​  detB1=∣∣∣∣​35​46​∣∣∣∣​  detB2=∣∣∣∣​35​46​∣∣∣∣​

C r a m e r ′ s R u l e : x 1 = − 4 − 2 = 2 x 2 = 2 − 2 = − 1 Cramer's Rule :\space\space\space\space x1=\frac{-4}{-2}=2\space\space\space\space x2=\frac{2}{-2}=-1 Cramer′sRule:    x1=−2−4​=2    x2=−22​=−1

c h e c k [ 3 4 5 6 ] [ 2 − 1 ] = [ 2 4 ] check \left[\begin{matrix} 3& 4\\ 5& 6 \end{matrix} \right] \left[\begin{matrix} 2\\ -1 \end{matrix} \right] =\left[\begin{matrix} 2\\ 4 \end{matrix} \right] check[35​46​][2−1​]=[24​]

2. A − 1 A^{-1} A−1

C表示余子式,最后的每项 C j i C_{ji} Cji​的系数 是 ( − 1 ) i + j (-1)^{i+j} (−1)i+j
( A − 1 ) i j = C j i d e t A (A^{-1})_{ij}=\frac{C_{ji}}{det\space A} (A−1)ij​=det ACji​​
比 如 : ( A − 1 ) 31 = C 13 d e t A 比如:(A^{-1})_{31}=\frac{C_{13}}{det\space A} 比如:(A−1)31​=det AC13​​

例题:
A = [ a b c d ] A= \left[ \begin{matrix} a &b \\ c & d \end{matrix} \right] A=[ac​bd​]
C 11 = d ∣ A ∣ , C 21 = − c ∣ A ∣ , C 12 = − b ∣ A ∣ , C 22 = a ∣ A ∣ C_{11}=\frac{d}{|A|} ,\space\space C_{21}=\frac{-c}{|A|},\space\space C_{12}=\frac{-b}{|A|},\space\space C_{22}=\frac{a}{|A|} C11​=∣A∣d​,  C21​=∣A∣−c​,  C12​=∣A∣−b​,  C22​=∣A∣a​
∣ A ∣ = 1 a d − b c |A|=\frac{1}{ad-bc} ∣A∣=ad−bc1​
A − 1 = 1 a d − b c [ d − b − c a ] A^{-1}= \frac{1}{ad-bc}\left[ \begin{matrix} d &-b \\ -c & a \end{matrix} \right] A−1=ad−bc1​[d−c​−ba​]

3. 行列式的几何意义

  • 在 x y x\space y x y 坐标平面中,3个点的坐标分别是 ( x 1 , y 1 ) ( x 2 , y 2 ) ( x 3 , y 3 ) (x1,y1)\space (x2,y2)\space (x3,y3) (x1,y1) (x2,y2) (x3,y3) ,那么它组成三角形的面积是:
    d e t e r m i n a n t 2 = 1 2 ∣ x 1 y 1 1 x 2 y 2 1 x 3 y 3 1 ∣ \frac{determinant}{2}=\frac{1}{2} \left| \begin{matrix} x1 & y1 & 1\\ x2 & y2 & 1 \\ x3 & y3& 1 \end{matrix} \right| 2determinant​=21​∣∣∣∣∣∣​x1x2x3​y1y2y3​111​∣∣∣∣∣∣​
    如果 ( x 3 , y 3 ) (x3,y3) (x3,y3) 是(0,0)的话 面积等于:
    1 2 ∣ x 1 y 1 x 2 y 2 ∣ \frac{1}{2} \left| \begin{matrix} x1 & y1 \\ x2 & y2 \end{matrix} \right| 21​∣∣∣∣​x1x2​y1y2​∣∣∣∣​
    平行四边形的面积=determinant,不需要除以2
    如果求出的值是负数,那么取它的绝对值。
  • 在 x y z x\space y\space z x y z 三维空间中,三个三维向量 ( a 11 a 12 a 13 ) ( a 21 a 22 a 23 ) ( a 31 a 32 a 33 ) (a_{11}a_{12}a_{13}) (a_{21}a_{22}a_{23})(a_{31}a_{32}a_{33}) (a11​a12​a13​)(a21​a22​a23​)(a31​a32​a33​)分别对应平行六面体的三条边,三个三维向量 不要求垂直,只需要能构成体积就行。那么它的体积等于:
    ∣ a 11 a 21 a 31 a 12 a 22 a 32 a 13 a 23 a 33 ∣ \left| \begin{matrix} a_{11}& a_{21}& a_{31} \\ a_{12} & a_{22} & a_{32} \\ a_{13} &a_{23}& a_{33} \end{matrix} \right| ∣∣∣∣∣∣​a11​a12​a13​​a21​a22​a23​​a31​a32​a33​​∣∣∣∣∣∣​
    可以这样想:如果三个向量两两垂直,假设为 ( 2 , 0 , 0 ) ( 0 , 3 , 0 ) ( 0 , 0 , 4 ) (2,0,0) (0,3,0)(0,0,4) (2,0,0)(0,3,0)(0,0,4),那么体积为三个边长之积:2*3*4=24,将边长放在矩阵中,求行列式也是2*3*4=24,如下:
    ∣ 2 0 0 0 3 0 0 0 4 ∣ = 2 ∗ 3 ∗ 4 = 24 \left| \begin{matrix} 2& 0 & 0 \\ 0 & 3& 0 \\ 0 & 0 & 4 \end{matrix} \right|=2*3*4=24 ∣∣∣∣∣∣​200​030​004​∣∣∣∣∣∣​=2∗3∗4=24
  • 内积 、外积、三重积

(1) 内积(Dot Product):两个向量的内积大小是一个长度,是一个数。

两个向量 ( x 1 , x 2 , x 3 ) ( y 1 , y 2 , y 3 ) (x1,x2,x3)\space (y1,y2,y3) (x1,x2,x3) (y1,y2,y3)的内积对应坐标乘积之和: x 1 y 1 + x 2 y 2 + x 3 y 3 x1y1+x2y2+x3y3 x1y1+x2y2+x3y3,通常写成 x T y x^Ty xTy

(2)外积(Cross Product):两个向量的外积大小是面积,还是一个向量。
u × v = ∣ i j k u 1 u 2 u 3 v 1 v 2 v 3 ∣ = ( u 2 v 3 − u 3 v 2 ) i + ( u 3 v 1 − u 1 v 3 ) j + ( u 1 v 2 − u 2 v 1 ) k u\times v= \left| \begin{matrix} i & j & k \\ u_{1} & u_{2} & u_{3} \\ v_{1} & v_{2} & v_{3} \end{matrix} \right|=(u_{2}v_{3}- u_{3}v_{2} )i+(u_{3} v_{1}- u_{1}v_{3} )j+(u_{1}v_{2} -u_{2} v_{1} )k u×v=∣∣∣∣∣∣​iu1​v1​​ju2​v2​​ku3​v3​​∣∣∣∣∣∣​=(u2​v3​−u3​v2​)i+(u3​v1​−u1​v3​)j+(u1​v2​−u2​v1​)k
得到的这个向量大小等于 u u u v v v 组成的四边形面积,方向垂直于这个平面,符合右手定则, x × y x\times y x×y的方向如下图 。

x × y = − ( y × x ) x\times y=-(y\times x) x×y=−(y×x)

(3)三重积(Triple Product)三个向量的三重积大小是体积

u v w u\space v \space w\space u v w 的Triple Product定义为: ( u × v ) ⋅ w (u\times v \space )\cdot w (u×v )⋅w =
d e t e r m i n a t = ∣ w 1 w 2 w 3 u 1 u 2 u 3 v 1 v 2 v 3 ∣ = ∣ u 1 u 2 u 3 v 1 v 2 v 3 w 1 w 2 w 3 ∣ determinat=\left| \begin{matrix} w_{1} & w_{2} & w_{3} \\ u_{1} & u_{2} & u_{3} \\ v_{1} & v_{2} & v_{3} \end{matrix} \right|=\left| \begin{matrix} u_{1} & u_{2} & u_{3} \\ v_{1} & v_{2} & v_{3}\\ w_{1} & w_{2} & w_{3} \end{matrix} \right| determinat=∣∣∣∣∣∣​w1​u1​v1​​w2​u2​v2​​w3​u3​v3​​∣∣∣∣∣∣​=∣∣∣∣∣∣​u1​v1​w1​​u2​v2​w2​​u3​v3​w3​​∣∣∣∣∣∣​

行列式的几何意义

矩阵和行列式的几何意义

Determinants相关推荐

  1. 《线性代数习题集》 Chapter 1_Determinants_Sec.1.Second-and Third-Order Determinants

    这是我去年做的某本苏联线性代数习题集上的几道题,没什么价值,但是毕竟算做过,丢了可惜,因此贴在这里. 1. $\begin{vmatrix} 5&2\\ 7&3 \end{vmatri ...

  2. 行列式(Determinants)

    行列式(Determinants) 1.行列式(Determinants) 1.1 行列式的性质 1.2 计算行列式的三种方法 1.2.1 The Pivot Formula 1.2.2 The Bi ...

  3. 论文笔记 | Determinants of Cross-Border Mergers and Acquisitions

    SIL, EREL, ROSE, et al. Determinants of Cross-Border Mergers and Acquisitions[J]. Journal of Finance ...

  4. Chapter 3 (Determinants): Cramer‘s rule, volume, and linear transformations (克拉默法则、体积和线性变换)

    本文为<Linear algebra and its applications>的读书笔记 目录 Cramer's Rule Application to Engineering A Fo ...

  5. MPB:张云增、王年等-​柑橘根际和根表微生物组样品的收集及核酸提取方法

    为进一步提高<微生物组实验手册>稿件质量,本项目新增大众评审环节.文章在通过同行评审后,采用公众号推送方式分享全文,任何人均可在线提交修改意见.公众号格式显示略有问题,建议电脑端点击文末阅 ...

  6. SEL:世界土壤日Stefan Geisen报告(朱永官院士主持,12月4日)

    "土壤生态学"系列学术讲座(一) 报告题目:Soil biodiversity, microbiomes and their predators: Disentangling th ...

  7. Microbiome:韦中组揭示根际原生动物群落是决定植物健康的关键因素

    3月3日,LorMe实验室在根际微生态与植物健康研究取得进展,成果以"Rhizosphere protists are key determinants of plant health&qu ...

  8. 中国治理蝗灾是生物防治的成就,根本不是靠鸡靠鸭靠吃货换来的!

    近一段时间来,沙漠蝗虫全球肆虐,搞得人心惶惶.东非人民早就在和蝗虫进行紧张的肉搏战事了,乌干达政府宣布派出超过2000名军队人员来应对蝗灾,巴国空军更是出动149架战机要跟蝗虫开战等等. 正所谓居安思 ...

  9. NBT:宏基因组二、三代混合组装软件OPERA-MS

    文章目录 宏基因组二.三代测序混合组装软件OPERA-MS 热心肠日报 摘要 主要结果 图1. OPERA-MS工作流程图 图2. 宏基因组数据混合组装基因组评测 图3. 组装虚拟肠道微生物组 图4. ...

最新文章

  1. ejabberd mysql 搭建配置_ejabberd安装步骤+Mysql配置
  2. httpclient通过POST来上传文件,而不是通过流的形式,并在服务端进行解析(通过htt......
  3. 对seq2seq的一些个人理解
  4. java基础(七) 深入解析java四种访问权限
  5. oracle 11g ocp 笔记(15)--使用rman进行备份
  6. 中微CMS32 Keil环境搭建
  7. mybatis传参——parameterType
  8. 金币 详解(C++)
  9. mysql 编译安装详解_MySQL编译安装详解
  10. 后台管理系统开发缺陷日志
  11. 器件基础知识——电感
  12. 深度| 百度副总裁王海峰:百度在NLP领域都做了什么?
  13. MySQL Enterprise Backup使用简介
  14. Kali Linux 渗透测试之被动信息收集(三)——Recon-NG框架
  15. uefi+guid分区与legacy+mbr分区_对硬盘进行分区时,GPT和MBR有什么区别
  16. UVM实战 卷I学习笔记10——UVM中的寄存器模型(3)
  17. 软件项目管理指南:定义、5大过程、估算及进度管理方法等
  18. 电脑开不了机怎么办?4招帮你重新开机!
  19. 常用USB转串口工具, win10上使用的解决方案
  20. java电影院排片影评管理系统ssm

热门文章

  1. NAT 穿越技术(一)
  2. AI诊疗里程碑突破!Nature子刊:全新AI诊断工具问世,准确度或超年轻医生
  3. raspberry是个什么玩意
  4. 陕西彬州一男子持刀杀害两名女性 警方发布协查通告
  5. Extjs 组件继承 模板说明(同GridPanel案件)
  6. PCA主成分分析实战案例
  7. 完整电商项目--项目介绍(1)
  8. VS“无法查找或打开PDB文件” 解决方案
  9. 网银,快钱,支付宝,财付通的比较
  10. mysql如何卸载干净,已整理成文档