2021年1月17日 星期日
2021年1月14日 星期四
How to Check if HPLIP is Installed On Your System
How to Check if HPLIP is Installed On Your System
https://developers.hp.com/hp-linux-imaging-and-printing/howtos/install#howtocheck7
2021年1月13日 星期三
2021年1月11日 星期一
Ubuntu 中文顯示設定
Ubuntu 中文顯示設定
Ubuntu 系統中文顯示亂碼的問題解決
https://codertw.com/%E4%BC%BA%E6%9C%8D%E5%99%A8/378691/
Ubuntu 16.04 設定環境語言編碼,讓中文可以正常顯示
https://noter.tw/396/ubuntu-16-04-%E8%A8%AD%E5%AE%9A%E7%92%B0%E5%A2%83%E8%AA%9E%E8%A8%80%E7%B7%A8%E7%A2%BC%EF%BC%8C%E8%AE%93%E4%B8%AD%E6%96%87%E5%8F%AF%E4%BB%A5%E6%AD%A3%E5%B8%B8%E9%A1%AF%E7%A4%BA/
2021年1月10日 星期日
2021年1月7日 星期四
花式滑冰
花式滑冰 看圓周運動旋轉半徑與角速度的關係
中国新一代花滑女神横空出世,年仅17岁,连韩国网友都为她倾倒,网友:仙女本人【纪实天下】
https://www.youtube.com/watch?v=DJdDwKcASdM&t=19s
左手指月!出现在花样滑冰赛场
https://www.youtube.com/watch?v=KpscnCzwXfY
Ising Model
https://www.unige.ch/~smirnov/slides/slides-ising-model.pdf
https://www.unige.ch/~smirnov/slides/slides-ising-model.pdf
http://web.mit.edu/ceder/publications/Ising%20Model.pdf
https://www.sciencedirect.com/topics/physics-and-astronomy/ising-model
https://www.youtube.com/hashtag/condensedmatter
The Ising Model: Brief Introduction and Its Application
By Satya Pal Singh
https://stanford.edu/~jeffjar/statmech/intro4.html
https://www.youtube.com/watch?v=2HehOGh0j7M&t=120s
https://www.youtube.com/watch?v=kvf7aUPZCWk&t=6s
https://www.youtube.com/watch?v=hX_FrS5XO3I
https://www.youtube.com/watch?v=nnw0Xlbj3JM
Monte Carlo simulation of 2D Ising model
https://www.youtube.com/watch?v=nnw0Xlbj3JM
Mean-Field Theory | Ising model | Solid State Physics
https://www.youtube.com/watch?v=40oxMhlQMiw
Ising Model of Phase Transition Statistical Mechanics (Physics) in English(Live Class Now)
https://www.youtube.com/watch?v=Bk8CRaiXVGg
Practice ising model in 30 minutes | Physical Science | CSIR NET | Satyendra | Unacademy
https://www.youtube.com/watch?v=GcXWtL2kI7g
2021年1月5日 星期二
maxima vector command
Maxima vector magnitude and cross product
https://math.stackexchange.com/questions/1029762/maxima-vector-magnitude-and-cross-product/1180712
http://www.scotchildress.com/wxmaxima/VectorArithmetic/VectorArithmetic.html
vector command in maxima
- a.b a.b;
- axb
load("vect" );
express(a~b);
- |a|
sqrt(a.a);
or
norm(x):=sqrt(x.x);
- a hat
a/sqrt(a.a) ;
or
hat(x):=x/norm(x);
- a proj b
proj(a,b):=a.b/norm(b)^2 *b ;
example:
kill(all);
load("vect" );
express(a~b);
norm(x):=sqrt(x.x);
hat(x):=x/norm(x);
proj(a,b):=a.b/norm(b)^2 *b ;
a:[1,2];
b:[3,4];
a.b;
express(a~b);
norm(a);
hat(a);
proj(a,b);
dyamic system