How do I remove a value from a column, but keep the rest?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
TehSharkDood
il 28 Gen 2023
Commentato: TehSharkDood
il 28 Gen 2023
How do I remove a value from a column but then keep the rest of the values? For instance, say I had a set of values in a table within column six going from top to bottom, but wanted to remove the first value at the top and then keep the rest. What is the proper way to execute that?
0 Commenti
Risposta accettata
Image Analyst
il 28 Gen 2023
Assuming you want to get rid of the entire first row of table "t", you could do
t = t(2:end, :); % Extract rows 2 onwards.
2 Commenti
Image Analyst
il 28 Gen 2023
Try this:
YearMax = max(tabledata(2:end , 6)) % Look only at rows 2 and below
Più risposte (1)
Arif Hoq
il 28 Gen 2023
Try this. If there is any issue, please upload your data.
load patients
T = table(LastName,Gender,Age,Height,Weight,Smoker,Systolic,Diastolic)
size(T)
T(1,:)=[]
size(T)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!