2015年12月6日 星期日
2015年8月12日 星期三
Git參考網站
git下載
https://git-scm.com/downloads/guis
Git 教學(1):Git的基本使用
Git 教學(2):Git Branch 的操作與基本工作流程
Git 情境劇:告訴你使用 Git 時什麼情況該下什麼指令
http://gogojimmy.net/2012/01/17/how-to-use-git-1-git-basic/
Git教材
https://ihower.tw/git/
書 - 為你自己學 Git - 高見龍
https://gitbook.tw/
GIT指令
剛才的 Commit 後悔了
git reset
git log --oneline
git reset e12d8ef^
=git reset 85e7e30
2015年8月7日 星期五
PLSA
PLSA中文, Probabilistic latent semantic analysis (pLSA)
http://blog.tomtung.com/2011/10/plsa/
PLSA中文, 概率语言模型及其变形系列(1)-PLSA及EM算法
http://blog.csdn.net/yangliuy/article/details/8330640
投影片 Introduction to Probabilistic Latent Semantic Analysis
http://www.slideshare.net/NYCPredictiveAnalytics/introduction-to-probabilistic-latent-semantic-analysis
http://blog.tomtung.com/2011/10/plsa/
PLSA中文, 概率语言模型及其变形系列(1)-PLSA及EM算法
http://blog.csdn.net/yangliuy/article/details/8330640
投影片 Introduction to Probabilistic Latent Semantic Analysis
http://www.slideshare.net/NYCPredictiveAnalytics/introduction-to-probabilistic-latent-semantic-analysis
POMDP
The POMDP Page
http://www.pomdp.org/index.html
POMDP and MDP , Dimitri Ognibene's Homepage
https://sites.google.com/site/dimitriognibenehomepage/my-research-interest/pomdp
Youtube, POMDP Partially Observable Markov Decision Process
https://www.youtube.com/watch?v=-q61H11Lm0s
Latex參考網站
latex教學
http://www.cs.pu.edu.tw/~wckuo/doc/latex123/node1.html
Latex Math Symbols
http://web.ift.uib.no/Teori/KURS/WRK/TeX/symALL.html
常用数学符号的 LaTeX 表示方法
http://mohu.org/info/symbols/symbols.htm
algorithmc 套件使用說明
ftp://ftp.ccu.edu.tw/pub/tex/macros/latex/contrib/algorithms/algorithms.pdf
algorithmic package
https://en.wikibooks.org/wiki/LaTeX/Algorithms#Typesetting_using_the_algorithmic_package
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
http://tex.stackexchange.com/
http://www.cs.pu.edu.tw/~wckuo/doc/latex123/node1.html
Latex Math Symbols
http://web.ift.uib.no/Teori/KURS/WRK/TeX/symALL.html
常用数学符号的 LaTeX 表示方法
http://mohu.org/info/symbols/symbols.htm
algorithmc 套件使用說明
ftp://ftp.ccu.edu.tw/pub/tex/macros/latex/contrib/algorithms/algorithms.pdf
algorithmic package
https://en.wikibooks.org/wiki/LaTeX/Algorithms#Typesetting_using_the_algorithmic_package
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
http://tex.stackexchange.com/
Matlab基礎參考網站
MATLAB 程式設計與應用 張智星
http://www.cs.nthu.edu.tw/~jang/mlbook/ch1/
MATLAB 之工程應用 馮丁樹編著
http://bime-matlab.blogspot.tw/
http://www.cs.nthu.edu.tw/~jang/mlbook/ch1/
MATLAB 之工程應用 馮丁樹編著
http://bime-matlab.blogspot.tw/
Matlab 找特定一行向量
cellfun
http://www.mathworks.com/matlabcentral/answers/162312-applying-formula-across-various-matrices
http://stackoverflow.com/questions/20480190/how-to-divide-each-row-of-a-cell-array-by-another-cell-array
http://www.mathworks.com/matlabcentral/answers/162312-applying-formula-across-various-matrices
mat2cell
http://www.mathworks.com/help/matlab/ref/mat2cell.html
找特定一行向量
http://www.mathworks.com/matlabcentral/answers/7434-find-vector-in-matrix
arrayfun
http://stackoverflow.com/questions/12522888/arrayfun-can-be-significantly-slower-than-an-explicit-loop-in-matlab-why
bsxfun
http://stackoverflow.com/questions/16214891/how-to-avoid-a-for-loop-in-matlab-when-performing-a-operation-on-each-row-in-a?lq=1
Apply element-by-element binary operation to two arrayswith singleton expansion enabled
C = bsxfun(fun,A,B)
A = magic(5);
A = bsxfun(@minus, A, mean(A))
A =
4 11 -12 -5 2
10 -8 -6 1 3
-9 -7 0 7 9
-3 -1 6 8 -10
-2 5 12 -11 -4
groupList3 = full(groupList1(ind,:));
groupList3unique = unique(groupList3,'rows');
indexTarget = find(result(:,1) == bestWeightNodes & result(:,2) == bestWeightUsers);
bestNodes = bsxfun(@and ,groupList3, groupList3unique(indexTarget,:));
%groupList3unique
http://www.mathworks.com/matlabcentral/answers/77713-would-a-bsxfun-operator-family-be-a-good-idea
http://www.mathworks.com/matlabcentral/answers/162312-applying-formula-across-various-matrices
http://stackoverflow.com/questions/20480190/how-to-divide-each-row-of-a-cell-array-by-another-cell-array
http://www.mathworks.com/matlabcentral/answers/162312-applying-formula-across-various-matrices
mat2cell
http://www.mathworks.com/help/matlab/ref/mat2cell.html
找特定一行向量
http://www.mathworks.com/matlabcentral/answers/7434-find-vector-in-matrix
arrayfun
http://stackoverflow.com/questions/12522888/arrayfun-can-be-significantly-slower-than-an-explicit-loop-in-matlab-why
bsxfun
http://stackoverflow.com/questions/16214891/how-to-avoid-a-for-loop-in-matlab-when-performing-a-operation-on-each-row-in-a?lq=1
Apply element-by-element binary operation to two arrayswith singleton expansion enabled
C = bsxfun(fun,A,B)
A = magic(5);
A = bsxfun(@minus, A, mean(A))
A =
4 11 -12 -5 2
10 -8 -6 1 3
-9 -7 0 7 9
-3 -1 6 8 -10
-2 5 12 -11 -4
groupList3 = full(groupList1(ind,:));
groupList3unique = unique(groupList3,'rows');
indexTarget = find(result(:,1) == bestWeightNodes & result(:,2) == bestWeightUsers);
bestNodes = bsxfun(@and ,groupList3, groupList3unique(indexTarget,:));
%groupList3unique
http://www.mathworks.com/matlabcentral/answers/77713-would-a-bsxfun-operator-family-be-a-good-idea
2015年8月6日 星期四
輕鬆將程式碼轉成Blog可以用的格式
查到這個網站,用JavaScript寫的,可以將要PO的程式碼轉成Blog可以用的格式,特殊字元及縮排才不會亂跑。
http://formatmysourcecode.blogspot.tw/
http://formatmysourcecode.blogspot.tw/
訂閱:
文章 (Atom)
IKEA吊櫃廚櫃
好不容易裝好IKEA買來的吊櫃,花了三天。 從組裝,鑽牆,上牆調水平,累死我了。
-
Line提供Python的套件,給Python程式設計者可以使用套件API跟LINE互動,就不需要撰寫太多複雜的程式及JSON傳輸格式。套件是以Flask提供服務,啟動後,就是LINE的Webhook。 下載套件方法: pip install line-bot-sdk...