Matlab: writetable & writematrix

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

Комментарии • 2

  • @SUNILKUMAR-jf4py
    @SUNILKUMAR-jf4py Год назад

    Please make a video where you can properly show that writematrix and table in .csv and .xlsx format

    • @NealHoltschulte
      @NealHoltschulte  Год назад

      I'm not sure I understand the question. Using xlsx and csv should be as easy as changing the file extension:
      writetable(t, 'my_planet_data.xlsx')
      writetable(t, 'my_planet_data.csv')
      But it is true that you can't specify where to put the data in a csv. The following does not work:
      writetable(t, 'my_planet_data.csv','Sheet', 1,'Range','C5')