Community Profile

photo

Harish TV


Active since 2017

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Converting a CSV into a XLS through MatLab
clear; clear all; fileip='filename.csv'; g=char(fileip); g=g(1:end-4) fileop=horzcat(g,'.xlsx') g=fileip(1:e...

7 years ago | 0

Answered
how to convert a .txt file into a .xls file in matlab?
clear; clear all; fileip='filename.csv'; g=char(fileip); g=g(1:end-4) fileop=horzcat(g,'.xlsx') g=fileip(1:end-4); [~,~,F...

7 years ago | 0

Answered
Convert CSV to excel file, or read
Easy method clear; clear all; fileip='filename.csv'; g=char(fileip); g=g(1:end-4) fileop=horzcat(g,'.xlsx'...

7 years ago | 0

Answered
Converting .xls and .xlsx to .csv
clear; clear all; fileip='filename.csv'; g=char(fileip); g=g(1:end-4) fileop=horzcat(g,'.xlsx') g=fileip(1:end-4); [~,~,F...

7 years ago | 0