美文网首页
2018-11-28 MF -- LU factorizatio

2018-11-28 MF -- LU factorizatio

作者: Vivianandwine | 来源:发表于2018-11-28 17:33 被阅读0次

1 --- LU 矩阵分解

参考自matlab官方教程。

https://ww2.mathworks.cn/help/matlab/ref/lu.html?lang=en#mw_541f2442-eeb4-42d5-a121-6e7e7fa3087f

The main idea of LU-MF is A=LU, note the diagnial of L is 1, and L is a upper triangular matrix. So, U is a lower triangular matrix.

When applying the official tutorial, i have a question. How to use the Subplot function? 

The official description is subplot(m,n,p) divides the current figure into an m-by-n grid and creates axes in the position specified by p. MATLAB® numbers subplot positions by row. The first subplot is the first column of the first row, the second subplot is the second column of the first row, and so on. If axes exist in the specified position, then this command makes the axes the current axes.

Understand.    

Following is the example of LU.

Firstly, give the input matrix. 

A = [10 -7 0

    -3  2 6

      5 -1 5];

Then, apply one kind of the LU function. 

For ease of understand, we use the subplot to plot the L matrix and U matrix.

相关文章

  • 2018-11-28 MF -- LU factorizatio

    1 --- LU 矩阵分解 参考自matlab官方教程。 https://ww2.mathworks.cn/hel...

  • 矩阵分解

    MF和正则化MF 参考python-matrix-factorization/ 正则化MF就是在MF的损失函数上加...

  • NMF

    这一章随笔主要讲一下看Algorithm for non negative matrix factorizatio...

  • 鲨美访谈补完计划【黑凤凰】(不断更新)

    Source: Youtube JM+MF,google JM+MF,google video JM+MF Twi...

  • 再见联盟

    以MF开始,以MF结束,再见联盟!

  • GeoHash

    对9个base32进行排序 [wt3mf9qe, wt3mf9qg, wt3mf9qs, wt3mf9qt, wt...

  • MF

    好久都没和别人有这么长时间的交流了,自从去年被打击后,感觉整个人都封锁了起来。没精力去接触新事物,真的只想高考完,...

  • R语言mapsf包,mf_theme设置主题mf_title标题

    R语言mapsf包,mf_theme设置主题mf_title标题

  • lu lu生快~

  • LU

    习惯了城市的人是不容易察觉气候的变迁。看见树叶飞落,知道是秋天。看见树叶嫩绿,知道是春天。不过如此罢了。天上星斗,...

网友评论

      本文标题:2018-11-28 MF -- LU factorizatio

      本文链接:https://www.haomeiwen.com/subject/wrszqqtx.html