• <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>

            公告

            記錄我的生活和工作。。。
            <2010年9月>
            2930311234
            567891011
            12131415161718
            19202122232425
            262728293012
            3456789

            統(tǒng)計(jì)

            • 隨筆 - 182
            • 文章 - 1
            • 評(píng)論 - 41
            • 引用 - 0

            留言簿(10)

            隨筆分類(lèi)(70)

            隨筆檔案(182)

            文章檔案(1)

            如影隨形

            搜索

            •  

            最新隨筆

            最新評(píng)論

            閱讀排行榜

            評(píng)論排行榜

            20100906

            1 今天,看了一下avstar的論文。。沒(méi)有發(fā)現(xiàn)使用foot constraints的方法。。真是崩潰。。

            2 上午上課,矩陣分析與應(yīng)用。。。。很扯的一節(jié)課。。整理了一下課堂講義。。等有時(shí)間一起發(fā)出來(lái)吧。。

            3 晚上聽(tīng)了一個(gè)Convex Optimization的Stanford Course。。。恩,收獲還是挺大的。。。

            4 下午去辦牡丹卡。。

            5 看了一下PCA。。沒(méi)搞的太明白。。。明天繼續(xù)。。

             

            明日:

            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} \\ %求導(dǎo)使用的是\prime  偏導(dǎo)使用的是\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} \\ %求導(dǎo)使用的是\prime  偏導(dǎo)使用的是\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{對(duì)稱矩陣性質(zhì)}
            一種對(duì)稱矩陣的定義方法:
            \begin{displaymath}
            Ax=\bigtriangledown f(x)    \\f(x)=\frac{x^TAx}{2}
            \end{displaymath}

            \section{證明}
            有限維線性空間任意兩個(gè)極大無(wú)關(guān)組所含向量個(gè)數(shù)相同\\
            證明:
            $ (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{性質(zhì)}
            過(guò)渡矩陣非奇異\\
            A為奇異矩陣的定義是:存在非零n維向量使得$Ax=0$
            \end{document}

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


            只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。
            網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問(wèn)   Chat2DB   管理


            統(tǒng)計(jì)系統(tǒng)
            国产亚洲综合久久系列| 亚洲AV无码久久精品狠狠爱浪潮| 久久人人爽爽爽人久久久| 久久久久久亚洲精品影院| 青青久久精品国产免费看| 中文成人无码精品久久久不卡| 一级a性色生活片久久无| 99久久国产热无码精品免费久久久久| 99久久国产亚洲高清观看2024| 国内精品久久久久久久97牛牛 | 性欧美大战久久久久久久久 | 国产精品一久久香蕉国产线看 | 狠狠色丁香久久婷婷综合_中| 一本大道久久东京热无码AV | 51久久夜色精品国产| 一级做a爰片久久毛片人呢| 久久97精品久久久久久久不卡| 国产精品毛片久久久久久久| 成人免费网站久久久| 激情五月综合综合久久69| 91麻豆国产精品91久久久| 久久久亚洲裙底偷窥综合| 国产精品xxxx国产喷水亚洲国产精品无码久久一区| 久久久精品久久久久久| 久久亚洲AV成人出白浆无码国产| 蜜臀av性久久久久蜜臀aⅴ麻豆| 精品久久久久久无码专区 | 久久精品国产99久久香蕉| 无夜精品久久久久久| 久久久久久亚洲AV无码专区| 久久亚洲精品无码aⅴ大香 | 2021久久精品免费观看| 精品久久久久久亚洲| 伊色综合久久之综合久久| 潮喷大喷水系列无码久久精品| 精品久久久久久无码国产| 久久久久久久久无码精品亚洲日韩 | 一本大道久久东京热无码AV| AV无码久久久久不卡网站下载| 青青草国产97免久久费观看| 久久狠狠色狠狠色综合|