How to show word from excel?

조회 수: 1 (최근 30일)
Eddy Iswardi
Eddy Iswardi 2020년 3월 28일
댓글: Eddy Iswardi 2020년 3월 29일
I want to show the word from excel. But I don't know how to show it. This is my code.
clc;
clear all;
T=readtable('EVASUSANTIDATA.xlsx');
x1=T.PENDAFTARAN;
x2=T.TUNDA;
x3=T.KUOTA;
y=T.LAMA;
For example, I want to get this result:
KOTA KUOTA LAMA
KOTA BENGKULU 311 21
it's the data number one in excel. With 'KUOTA' is 'x3' and 'LAMA' is 'y'

채택된 답변

Peng Li
Peng Li 2020년 3월 28일
편집: Peng Li 2020년 3월 28일
subT = T(T.NO == 1, [2 5 6]);
Will be the first record with the 2nd 5th and 6th variable as a new table.
  댓글 수: 17
Walter Roberson
Walter Roberson 2020년 3월 29일
In the code
T(1:4, [2 5 6])
The [2 5 6] does not refer to values of KUOTA that are to be matched: the [2 5 6] refers to column numbers in the table. So when you were talking about T(1:4, [2 d 6]) then you were talking about extracting a different set of column numbers.
Anyhow:
nT = T(1:4, [2 5 6]);
nT{:,2} = d(:);
Eddy Iswardi
Eddy Iswardi 2020년 3월 29일
thanks. you guys are very helpful. now I know how to manipulate views like this in the future.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by