zoukankan      html  css  js  c++  java
  • Latex

    点乘$cdot$ cdot 

    矩阵$egin{bmatrix} 5 & 0 & 0 \ 0 & 5 & 0 \ 0 & 0 & 5 end{bmatrix}$ egin{bmatrix} 5 & 0 & 0 \ 0 & 5 & 0 \ 0 & 0 & 5 end{bmatrix}  (&空格,\换行)

    阿尔法$alpha$  alpha

    贝塔$eta$  eta

    分号$frac{a}{b}$  frac{a}{b}

    $ riangleq$  riangleq

    $wedge$  wedge

    $vee$  vee

    $lambda$  lambda

    $in$  in

    $sigma$  sigma

    $Sigma$  Sigma

    $zeta$  zeta

    $ hickapprox$  hickapprox

    $mathop{min}limits_{Delta{x}}$  mathop{min}limits_{Delta{x}} (若是普通符号,那么要用mathop先转成数学符号再用limits)

    参考:http://www.mohu.org/info/symbols/symbols.htm

    $ enewcommand{ healgorithm}{1}   %定义算法的编号$

    $egin{algorithm}[H] $
    $caption{Doppler Profile Extraction}$
    $egin{algorithmic}[1]$
    $REQUIRE{Spectrogram matrix $P$, centre frequency bin $cf$}$
    $ ENSURE{Doppler shift profile $DopShift$}\$
    $STATE{colNum=getColumNum($P$);} \$
    $STATE{$DopShift$(1:colNum)=$cf$;}  //initialization \$
    $FOR{i=1:colNum}$
      STATE row=getNonNullRows(col(i)); // get non-null rows of the $i$th col\
     IF{isNotEmpty(row)}
      STATE{meanValue=mean(row);}\
           ElSE
                  STATE{meanValue extgreater cf}\
                  STATE{$DopShift$(i)=max(row);}\
                  STATE{$DopShift$(i)=min(row);}\
           ENDIF
     ENDFOR
     STATE{$DopShift$ = SMA($DopShift$);} // SMA represents smoothed moving average filter\
           STATE{Return $DopShift$;}
    end{algorithmic}
    end{algorithm}

    $

  • 相关阅读:
    汉罗塔问题
    有进度条圆周率计算
    turtle库笔记
    OwnCloud建立属于自己私有的云存储网盘
    HTTP 常见请求状态码
    虚拟机部署Kubernetes集群
    常用文件头(16进制)
    配置LAMP环境
    Linux系统日志
    Java的socket通信与操作系统的SocketAPI关系探究
  • 原文地址:https://www.cnblogs.com/112358nizhipeng/p/9609681.html
Copyright © 2011-2022 走看看