原创 FITS python

FITS: flexible image transport system HDU(header and data unit): 1、頭文件(header) 2、數據單元(data)   SIMPLE: 標準FITS(T) BITPX:

原创 c++ 學習筆記

彙編語言 high level language low level language:assembly;machine   一、彙編語言是什麼?  二進制指令的文本形式 指令(instruction) 操作碼(opcode) 程序——>

原创 linux shell學習筆記

linux 內核 linux 完整系統:linux kernel; free software; documentation.   2-1   linux用戶切換與創建 2-2  shell快捷鍵 ctrl+a/e 光標移到開頭/結尾 c

原创 好文收藏

包、模塊、類、函數/變量 https://blog.csdn.net/xiaohanxing/article/details/79992514

原创 linux常用命令收藏

tar zxvf  *** 解壓 gcc -m64 -lstdc++ -Wall -o r r.cpp 編譯    https://blog.csdn.net/zhouchang3/article/details/77624214

原创 統計觀測數據時間段(20180926)

d26.py #-*-coding:utf-8-*- import stat import time import datetime filename='record20180919.txt' x1,x2,x3,x4,x5,x6=[],[

原创 c語言求文件列數據rms平均值

#include <stdio.h> #include <stdlib.h> #include <iostream> int main(){ char line[129600],stra[129600],strb[1296

原创 時間系統

GPS 原子鐘 UTC 地球運轉誤差 LST 恆星時

原创 實驗室檢測結果——數據處理思路

在寫程序發現一個壞毛病,不能籠統的寫一大堆,要養成寫小程序調用的習慣,這樣既可以節省編程時間,邏輯結構清晰明瞭,很容易調試,有bug方便修改。 所需程序: 1、數據存儲 2、轉數據格式 3、圖形界面選擇 4、數組方案,c\python 互

原创 windows配置

1、notepad++ 2、sumatralPDF 3、gaaiho Reader 4、火絨安全軟件 5、

原创 代碼編輯器光標問題

notepad++ 中 鍵盤 Insert鍵

原创 自動生成報表(改2)

d1.py #-*-coding:utf-8-*- import time import datetime filename='record20180910.txt' x1,x2,x3,x4,x5,x6=[],[],[],[],[],

原创 自動生成日報表(改)

d1.py ______________________________________________ #-*-coding:utf-8-*- import time import datetime filename='record20

原创 自動生成日報表

此處用到兩個python腳本: data.py from datetime import datetime filename='record20180907.txt' x1,x2,x3,x4,x5,x6=[],[],[],[],[],

原创 c++調用python list

2.py def data(): da=range(1,100); return da #print data() 2.cpp #include <iostream> #include <Python.h> using