def calculate_phases_score(aneurysm_size, age, hypertension, smoking): score = 0 # Calcola il punteggio in base alla dimensione dell'aneurisma if aneurysm_size <= 7: score += 1 elif aneurysm_size <= 15: score += 2 else: score += 3 # Calcola il punteggio in base all'età if age <= 60: score += 1 else: score += 2 # Calcola il punteggio in base all'ipertensione if hypertension: score += 2 # Calcola il punteggio in base al fumo if smoking: score += 3 return score # Esempio di utilizzo phases_score = calculate_phases_score(10, 65, True, True) print("Il phases score è:", phases_score) DSA – Lab Neurovascolare

Intra-Arterial MR Perfusion Imaging of Meningiomas: Comparison to Digital Subtraction Angiography and Intravenous MR Perfusion Imaging

Mark A. Lum,1Alastair J. Martin,2Matthew D. Alexander,2David B. McCoy,2Daniel L. Cooke,2Prasheel Lillaney,2Parham Moftakhar,2Matthew R. Amans,2Fabio Settecase,2Andrew Nicholson,2Christopher F. Dowd,2,3,4,5Van V. Halbach,2,3,4,5Randall T. Higashida,2,3,4,5Michael W. McDermott,3David Saloner,2 and Steven W. Hetts2,* Pubmed Background and Purpose: To evaluate the ability of IA MR perfusion to characterize meningioma blood supply. Methods: Studies were performed in a suite comprised Read more about Intra-Arterial MR Perfusion Imaging of Meningiomas: Comparison to Digital Subtraction Angiography and Intravenous MR Perfusion Imaging[…]