remove unwanted columns and raws

Hi
Wnat to remove the first column and first raw. Any easier way instead of my long way?
*see attached pic
X1 = readcell('PatientInfo.xlsx')
X2=X1 ( 2 : end ,4 , : )
X3=X1( 2: end,3 , : )
X4=X1( 2: end,2 , : )
X5=[X4,X3,X2]

Réponses (1)

Stephen23
Stephen23 le 25 Août 2022
X1(1,:) = []
X1(:,1) = []

Catégories

En savoir plus sur Programming dans Centre d'aide et File Exchange

Produits

Question posée :

Me
le 25 Août 2022

Commenté :

Me
le 25 Août 2022

Community Treasure Hunt

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

Start Hunting!

Translated by