필터 지우기
필터 지우기

how can i print output from table to word or excel?

조회 수: 38 (최근 30일)
arian hoseini
arian hoseini 2022년 6월 25일
댓글: arian hoseini 2022년 6월 25일
first of all thank u for your time and sorry for asking too many questions....for example i have this table ...is it possible to export this table to word or excel so that i dont have to write them one by one and this table is really big...i know there is a function for this i tried that but nothing happend
T1=table(v',i',tv',ti',Z',tz','VariableNames',{'V','I','thetav','thetai','Z','thetaz'});

채택된 답변

Karan Kannoujiya
Karan Kannoujiya 2022년 6월 25일
Hi arian,
You want to write the table data to excel or word-->
You can use below command to write the table data into excel
writetable(tableName, location , 'Sheet', 1);
'tableName' is the name of the table
'location' is where you wanted to save the excel sheet....suppose your excel sheet file name is 'excelData' and you wanted to save on desktop then location should be -->
location = 'Desktop/excelData';
I hope it helps
  댓글 수: 5
Karan Kannoujiya
Karan Kannoujiya 2022년 6월 25일
write full location of the file for e,g
location = 'C:\Users\karan\Desktop\myData.xls'
that will work
arian hoseini
arian hoseini 2022년 6월 25일
thank u sir

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

제품


릴리스

R2016b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by