2019年3月29日 星期五

【Python筆記】基本運算

先來練習一下基本的功能。

  • 資料型態:str, int, float
  • 基本數學運算:加減乘除、平方、無條件捨去
  • if-elif-else
  • for-loop
  • list
  • dict

(參考網頁:一小時python入門)


2019年3月11日 星期一

【Matlab筆記】cross correlation:xcross與crosscorr之異同

最近因為需要計算關節角度的相似性,所以需要使用cross correlation的計算。


在維基百科中,cross correlation的說明是"a measure of similarity of two series as a function of the displacement of one relative to the other.  This is also known as a sliding dot product or sliding inner-product.",看起來大致符合需求。