Getting an Age from Dataset

16 visualizzazioni (ultimi 30 giorni)
Alana Mera
Alana Mera il 19 Ott 2021
Risposto: Arunoda shehani il 26 Mag 2023
I'm trying to get an age from the following data in a matrix array/table, just unsure how to apply the code to my work. If anyone could help it would be amazing!
  3 Commenti
Alana Mera
Alana Mera il 20 Ott 2021
How do i calculate the age?
Star Strider
Star Strider il 20 Ott 2021
One possibility —
DOB = datetime(['06 Jul 1951'; '15 Aug 1943'], 'InputFormat','dd MMM yyyy')
DOB = 2×1 datetime array
06-Jul-1951 15-Aug-1943
CollectionDate = datetime(['01 Mar 2006'; '02 Mar 2006'], 'InputFormat','dd MMM yyyy')
CollectionDate = 2×1 datetime array
01-Mar-2006 02-Mar-2006
Age = caldiff([DOB CollectionDate], {'years' 'months' 'days'}, 2)
Age = 2×1 calendarDuration array
54y 7mo 23d 62y 6mo 15d
.

Accedi per commentare.

Risposte (1)

Arunoda shehani
Arunoda shehani il 26 Mag 2023
matlab code to determine birthday when enter the NIC number

Categorie

Scopri di più su Birthdays 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!

Translated by