Calling .csv file into Octave

前端 未结 2 1857
遇见更好的自我
遇见更好的自我 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';
    
    0 讨论(0)
  • 2021-02-14 12:15

    Using octave 3.8.2

    >> format long g
    >> dlmread ('test.csv',' ',2,0)
    ans =
    
                         0                     0                     0                   -20               70668.2
                         0                     0                     0                   -19                 65875
                         0                     0                     0                   -18               61411.9
                         0                     0                     0                   -17               57256.4
    

    General, use dlmread if your value separator is not a comma. Furthermore, you have to skip the two headlines. Theoretical dlmread works with tab separated values too '\t', but this failes with you given example, because of the discontinuous tab size (maybe it's just a copy paste problem), so taking one space ' ' as separator is a workaround. you should better save your .csv file comma separated

    Wavelength= 88.7927 m
    Time    Height  Force(KN/m)
    0, -20, 70668.2
    0, -19, 65875
    0, -18, 61411.9
    0, -17, 57256.4
    

    Then you can easily do dlmread('file.csv',',',2,0).

    You can try my csv2cell(not to be confused with csv2cell from io package!) function (never tried it < 3.8.0).

    >> str2double(reshape(csv2cell('test.csv', ' +',2),3,4))'
    ans =
    
                     0                   -20               70668.2
                     0                   -19                 65875
                     0                   -18               61411.9
                     0                   -17               57256.4
    

    Usually it reshaped successful automatically, but in case of space seperators, it often failed, so you have to reshape it by your self (and convert to double in any case).

    And when you need your headline

    >> reshape(csv2cell('test.csv', ' +',1),3,5)'
    ans =
    {
      [1,1] = Time
      [2,1] = +0
      [3,1] = +0
      [4,1] = +0
      [5,1] = +0
      [1,2] = Height
      [2,2] = -20
      [3,2] = -19
      [4,2] = -18
      [5,2] = -17
      [1,3] = Force(KN/m)
      [2,3] = 70668.2
      [3,3] = 65875
      [4,3] = 61411.9
      [5,3] = 57256.4
    }
    

    But take care, then everything is a string in your cell.

    0 讨论(0)
提交回复
热议问题