原创 截圖神器FastStone Capture :小而強悍的截圖一哥 (軟件-神器系列第1篇)

最近整理了一下未來發文的思路如下   今天開篇介紹 軟件-神器系列的第一篇  截圖神器FastStone Capture   軟件的亮點:                     輕量級(2.66MB)              

原创 c++ 字符串 操作 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead.

 代碼如下,顯示錯誤    C4996    'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable d

原创 numpy 使用總結

1. 如何將list變爲matrix? x=[] for i in range(100):     x.append(i) np.mat(x)    #變爲行矩陣 Y=np.array(y).reshape(len(y),1)