• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            O(1) 的小樂

            Job Hunting

            公告

            記錄我的生活和工作。。。
            <2011年10月>
            2526272829301
            2345678
            9101112131415
            16171819202122
            23242526272829
            303112345

            統計

            • 隨筆 - 182
            • 文章 - 1
            • 評論 - 41
            • 引用 - 0

            留言簿(10)

            隨筆分類(70)

            隨筆檔案(182)

            文章檔案(1)

            如影隨形

            搜索

            •  

            最新隨筆

            最新評論

            閱讀排行榜

            評論排行榜

            20100906

            1 今天,看了一下avstar的論文。。沒有發現使用foot constraints的方法。。真是崩潰。。

            2 上午上課,矩陣分析與應用。。。。很扯的一節課。。整理了一下課堂講義。。等有時間一起發出來吧。。

            3 晚上聽了一個Convex Optimization的Stanford Course。。。恩,收獲還是挺大的。。。

            4 下午去辦牡丹卡。。

            5 看了一下PCA。。沒搞的太明白。。。明天繼續。。

             

            明日:

            1 論文

            2 PCA

            3 把課程的講義整理一下。。不能白看啊。。

             

            整理的筆記:

            \documentclass[11pt]{article}
            \usepackage{ctex}
            \usepackage{graphicx}
            \usepackage{float}
            \DeclareGraphicsRule{.jpg}{eps}{.bb}{}
            \DeclareGraphicsRule{.png}{eps}{.bb}{}

            \begin{document}

            \title{Matrix Analysis and Application}
            \author{Sosi}
            \maketitle
            \section{Jacobian and Hessian Matrix}
            \begin{enumerate}
            \item Jacobian Matrix\\
            the Jacobian matrix is the matrix of all first-order partial derivatives
            of a vector or scalar-value function with respect to another vector. Suppose
            $F:R^n \rightarrow R^m $is a function from Euclidean n-space to Euclidean m-space.Such a function is given by $m$ real-value component function,$y_1(x_1,...,x_n),...,y_m(x_1,...,x_n)$.The partial derivatives of
            all these functions (if they exit) can be organized in a $m-by-n$matrix,the Jacobian matrix $J$ of $F$,as follows:
            \begin{displaymath}
            \mathbf{X} =
            \left( \begin{array}{ccc}
            x_{11} & x_{12} & \ldots \\
            x_{21} & x_{22} & \dots  \\
            \vdots & \vdots & \ddots
            \end{array} \right)
            \end{displaymath}
            \begin{displaymath}
            \mathbf{J} =
            \left( \begin{array}{ccc}
            \frac{ \partial y_1}{ \partial x_1}
            & \ldots  &
            \frac{{\partial}y_1}{{\partial} x_n} \\ %求導使用的是\prime  偏導使用的是\partial
            \vdots & \ddots &\vdots\\
            \frac{ {\partial} y_m}{ {\partial} x_1}
            & \ldots   &
            \frac{ {\partial} y_m}{ {\partial} x_n}
            \end{array}
            \right)
            \end{displaymath}

            \item Hessian Matrix\\
            in mathematics, the Hessian matrix is the square matrix of second-order
            partial derivatives of a function; that is, it describes the local curvatrue of a function of many variables.The Hessian matrix was developed in the 19th century by the German mathematician Hesse and later named after him.
            \begin{displaymath}
            \mathbf{H(f)} =
            \left( \begin{array}{cccc}
            \frac{ \partial ^2 f}{ \partial x_1^2}
            &
            \frac{ \partial ^2 f}{ \partial x_1 \partial x_2}
            & \ldots  &
            \frac{{\partial}^2 f}{{\partial}x_1 {\partial}x_n} \\ %求導使用的是\prime  偏導使用的是\partial
            \frac{ \partial ^2 f}{ \partial x_2{\partial}x_1}
            &
            \frac{ \partial ^2 f}{ \partial x_2^2 }
            & \ldots  &
            \frac{{\partial}^2 f}{{\partial}x_2 {\partial}x_n} \\
            \vdots &\vdots\ \ddots &\vdots\\
            \frac{ \partial ^2 f}{ \partial x_n{\partial}x_1}
            &
            \frac{ \partial ^2 f}{ \partial x_n \partial x_2}
            & \ldots  &
            \frac{{\partial}^2 f}{{\partial}x_n^2} \\
            \end{array}
            \right)
            \end{displaymath}
            Hessian matrices are used in large-scale optimization problems with Newton-type methods because they are the coefficient of the quadratic term of a local Taylor expansion of a function.That is

            \begin{displaymath}
            y=f(x+\Delta x)\approx f(x)+J(x)\Delta x +\frac{1}{2}\Delta x^TH(x)\Delta x
            \end{displaymath}
            \end{enumerate}

            \section{對稱矩陣性質}
            一種對稱矩陣的定義方法:
            \begin{displaymath}
            Ax=\bigtriangledown f(x)    \\f(x)=\frac{x^TAx}{2}
            \end{displaymath}

            \section{證明}
            有限維線性空間任意兩個極大無關組所含向量個數相同\\
            證明:
            $ (x_1,...,x_n)=(y_1,...,y_m)A $\\
            $(y_1,...,y_m)=(x_1,...,x_n)B$\\
            $(y_1,...,y_m)= (y_1,...,y_m)AB$\\
            $AB=E_n$\\
            $BA=E_m$\\
            $tract(AB)=trace(BA)$\\
            $m=n$\\

            \section{性質}
            過渡矩陣非奇異\\
            A為奇異矩陣的定義是:存在非零n維向量使得$Ax=0$
            \end{document}

            posted on 2010-09-06 22:15 Sosi 閱讀(119) 評論(0)  編輯 收藏 引用

            統計系統
            亚洲午夜久久久精品影院| 久久棈精品久久久久久噜噜| 成人资源影音先锋久久资源网| 久久久久成人精品无码中文字幕 | 久久精品国产99久久久香蕉| 色综合久久中文字幕综合网| 亚洲中文字幕无码久久精品1| 九九精品99久久久香蕉| 色综合久久久久综合99| 国产精品国色综合久久| 一本色综合久久| 亚洲嫩草影院久久精品| 久久精品国产久精国产一老狼| 久久最近最新中文字幕大全 | 久久夜色精品国产www| 久久精品国产亚洲AV蜜臀色欲 | 区久久AAA片69亚洲| 免费国产99久久久香蕉| 性高湖久久久久久久久AAAAA| 99久久香蕉国产线看观香| 国产精品99久久99久久久| 7777精品伊人久久久大香线蕉| 99久久国产综合精品成人影院| 无码专区久久综合久中文字幕| 国产精品九九久久免费视频 | 欧美性大战久久久久久| 色综合久久综精品| 久久精品免费观看| 国产精品美女久久久久久2018| 无码国内精品久久综合88 | 久久婷婷色综合一区二区| 91精品国产91久久久久久青草| 久久久久高潮毛片免费全部播放| 久久精品国产亚洲AV影院| 久久久久久久免费视频| 精品久久久一二三区| 青青青青久久精品国产h久久精品五福影院1421| 国产精品久久毛片完整版| 久久AV高清无码| 99re这里只有精品热久久| 久久精品国产亚洲av麻豆小说|