J jacklee3633

[Python]儲存NI DAQ的資料到檔案中

338次觀看・

    這個範例說明如何將NI DAQ卡擷取的資料寫入檔案中。 This example introduce how to write data acquired from NI DAQ card to a file. 這裡有5個步驟: There are five steps: 1. Install nidaqmx package, Python can use this package to read analog signals from NI DAQ card. 2. Use Simulated NI DAQ Device to simulate NI DAQ device. 3. Use matplotlib to plot analog signals from NI DAQ device. 4. Use File open, write and close method to save a file. 5. Use "with open() as file" to save a file. This is a recommendation for file read and write in Python. #1. 安裝nidaqmx套件,使用Pythone讀取NI DAQ類比訊號。 #2. 使用Simulated NI DAQ Device模擬DAQ卡類比訊號。 #3. 使用matplotlib作互動模式顯示DAQ卡的類比資料。 #4. 使用file open, write, close寫入檔案。 #5. 使用with open() as file寫入檔案,自動呼叫close,(建議使用)。

    這個範例說明如何將NI DAQ卡擷取的資料寫入檔案中。

    This example introduce how to write data acquired from NI DAQ card to a file.

    這裡有5個步驟:

    There are five steps:

    1. Install nidaqmx package, Python can use this package to read analog signals from NI DAQ card.
    2. Use Simulated NI DAQ Device to simulate NI DAQ device.
    3. Use matplotlib to plot analog signals from NI DAQ device.
    4. Use File open, write and close method to save a file.
    5. Use "with open() as file" to save a file. This is a recommendation for file read and write in Python.

    1. 安裝nidaqmx套件,使用Pythone讀取NI DAQ類比訊號。

    2. 使用Simulated NI DAQ Device模擬DAQ卡類比訊號。

    3. 使用matplotlib作互動模式顯示DAQ卡的類比資料。

    4. 使用file open, write, close寫入檔案。

    5. 使用with open() as file寫入檔案,自動呼叫close,(建議使用)。

    JOBALL找專家作品 [[Python]儲存NI DAQ的資料到檔案中] 圖片 [0]
    J jacklee3633
    自我介紹
    Python程式開發服務
    評論

    更多作品

    看得不過癮嗎?以下推薦你更多的作品

    前往探索