Estimate LDL cholesterol

Estimate LDL cholesterol based on measured total cholesterol (TC), HDL, and triglycerides (TG).
404 download
Aggiornato 13 apr 2020

Visualizza la licenza

The function 'estimateLDL(TC, HDL, TG, InputUnits)' provides an estimate for the LDL cholesterol on measured total cholesterol (TC), HDL cholesterol, and triglycerides (TG).

For most cases, the classical formula by Friedewald, Levy, and Fredrickson dated back to 1972 [1] (usually called the Friedewald formula) is used.
For low triglycerides, the recent (2008) formula by Ahmadi et al. [2] is used.

INPUT:
TC - total measured cholesterol as listed in the blood test,
HDL - measured HDL cholesterol as listed in the blood test,
TG - total triglycerides as listed in the blood test,
InputUnits - 'conventional' (mg/dL) or 'SI' (mmol/L).

OUTPUT (rounded as in usual blood test reports):
eLDL.mg - estimated LDL [mg/dL], rounded to integers
eLDL.mmol - estimated LDL [mmol/L], rounded to two decimal places.

REFERENCES:
[1] Friedewald WT, Levy RI, Fredrickson DS: "Estimation of the Concentration of Low-Density Lipoprotein Cholesterol in Plasma, Without Use of the Preparative Ultracentrifuge". Clinical Chemistry, vol.18, no.6, 1972, pp.499-502.(PUBMED record: http://www.ncbi.nlm.nih.gov/pubmed/4337382)

[2] Ahmadi SA, Boroumand MA, Gohari-Moghaddam K, Tajik P, Dibaj SM: "The Impact of Low Serum Triglyceride on LDL-Cholesterol Estimation". Archives of Iranian Medicine, vol.11, no.3, 2008, pp.318-321. (PUBMED record: http://www.ncbi.nlm.nih.gov/pubmed/18426324)

EXAMPLE 1 (more or less standard triglycerides; conventional units):
> LDL = estimateLDL(210, 36, 236, 'conventional')
LDL =
mg: 127
mmol: 3.2800

EXAMPLE 2 (low triglycerides; SI units):
> LDL = estimateLDL(5.8, 1.48, 0.68, 'SI')
LDL =
mg: 130
mmol: 3.3600

Cita come

Igor Podlubny (2024). Estimate LDL cholesterol (https://www.mathworks.com/matlabcentral/fileexchange/36095-estimate-ldl-cholesterol), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2009a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su QSP, PKPD, and Systems Biology in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.0.2.0

Updated description.

1.0.1.0

Corrected the link to paper [2].

1.0.0.0