0%

作为一名研究人员,论文的重要性不需要过分强调,论文是展示成果、促进交流的重要工具。即使是同样的内容,不同的人写的论文也会存在很大的差异,优劣由此区分。因此,在注重论文内容的同时,掌握正确的论文写作方法也是非常必要的,可以起到事半功倍、锦上添花之功效。

Write and publish as early as possible.

  1. Why write and publish a paper ?

    • Altruism(利他)
    • Self-Interest(利己)publish or perish
  2. The Literature Search

    • There will always be important papers that you never find. This is the nature of modern science. Knowing when to quit (or pause) the literature search and begin the new work is a matter of judgment and experience.
  3. Plan and Execute Research with Publication in Mind

    • Always think about publication.
Read more »

安装

第一步:安装 LaTeX 编译环境;第二步:安装 LaTeX 编辑器。

  • 编译环境可以选择 Tex LiveMiKTeX。二者的差别在于 Tex Live 安装文件远大于 MiKTeX,原因在于 TeX Live 中已经包含了绝大多数编译 .tex 文件所需的 package,而 MiKTex 中只包含了一些基础的 package,当编译过程中需要一些特定的 package 时,需要即用即下载。

  • 编辑器可以选择 TeXstudio, TeXMaker, LyX 等,根据个人的使用经验,推荐 TeXstudio 作为首选的编辑器。

将以上所需的工具下载之后,首先安装编译环境,然后再安装编辑器,过程中按照软件提示即可,一般无需多余的配置。(备注:安装软件时,推荐以管理员身份运行

Read more »

function

1
2
3
4
5
def function_name(input1, input2, ...):
function content
return output1, output2, ...

function_name()

NumPy

统计学

  • 计算方差、标准差

    1
    2
    3
    4
    import numpy as np
    a = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9])
    a_var = np.var(a) # 计算方差
    a_std = np.std(a) # 计算标准差
  • 计算协方差、协方差矩阵

    1
    2
    3
    4
    5
    import numpy as np
    x = [1, 2, 3]
    y = [5, 20, 16]
    result_matrix = np.cov(x,y)
    result = np.cov(x,y)[0,1]

清空变量

在写 Matlab 代码时,一般都有一个习惯,即在代码最开始的地方清空所有变量,如下所示:

1
2
3
clear ;
close all ;
clc ;
Read more »

本书中最后一部分给出了类似Ray Dalio在《原则》一书中给出的原则。摘要如下,这部分可以看作是本书想要传达理念的概括性总结,书中讲述的各种故事,是为了说明一下的道理。然而诚然,我们知道了很多道理,依然过不好这一生,所以,just do it.

Read more »

张至顺(1912年—2015年),原海南省道教协会名誉会长、西安万寿八仙宫名誉方丈,海南省玉蟾宫住持。生于1912年。七岁时值清末民初,战乱灾荒交加。因家境贫困离家乞讨。十二岁随师学艺,十七岁在陕西省华山遇师刘明苍道长而出家。在道观,张至顺从事杂役,终日劳苦,磨练心志,因道心清明和修炼上独辟蹊径,被师授以真传,为中国道教全真龙门正宗第二十一代传人。

Read more »

Here is full speech in English

President Mellow, distinguished faculty, friends, family, and the Graduating Class of 2013.

It is a great honor for me to share in your accomplishment and pride today. But I must admit that I approached this address with some trepidation. I suppose that more commencement speeches have been delivered more seriously, listened to more attentively, and forgotten more promptly than any other form of human communication.

Read more »