Calling .csv file into Octave

前端 未结 2 1872
遇见更好的自我
遇见更好的自我 2021-02-14 11:37

I have a code written in C++ that outputs a .csv file with data in three columns (Time, Force, Height). I want to plot the data using Octave, or else use the octave function plo

2条回答
  •  忘掉有多难
    2021-02-14 12:08

    Your not storing you .csv filename as a string. Try:

    filename = 'linear_wave_loading.csv';
    

提交回复
热议问题