Community Profile

photo

Angel Torrado-Carvajal


Last seen: 11 months ago Active since 2012

Followers: 0   Following: 0

Message

Angel Torrado-Carvajal is an Assistant Professor at the Medical Image Analysis and Biometry Lab, Universidad Rey Juan Carlos, and a Research Fellow at the Athinoula A. Martinos Center for Biomedical Imaging of the Massachusetts General Hospital, Harvard Medical School. He received a M.Sc. on Telecommunications Engineering (2010), a M.Sc. on Biomedical Engineering (2011), a M.Sc. on Computer Science (2014) and a Ph.D. in Medical Imaging (2016) from Universidad Rey Juan Carlos (URJC). He closely collaborates with the Pain and Neuroinflammation Imaging Lab at Martinos Center (MGH, HMS), and the Integrated MR-PET Lab at Martinos Center, the Center for Magnetic Resonance Research (CMRR). His current research interests include image acquisition and processing techniques in novel Ultra-High Field MRI and simultaneous PET/MR systems.

Statistics

All
  • Knowledgeable Level 1
  • First Answer
  • Thankful Level 1
  • Scavenger Finisher
  • Solver

View badges

Feeds

View by

Solved


How to subtract?
* Imagine you need to subtract one number from another using MATLAB. * You will not be using eval for this task. * Given two A...

6 years ago

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

6 years ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

6 years ago

Answered
load excel sheets with a specific name from the data set
Hi Mikkel, I do not know which data from the sheet you want to assign to the variable, but lets suppose you already have your...

6 years ago | 0

| accepted

Solved


Rotate a matrix for 180 degree
Rotate a matrix for 180 degree for eg: x=[1 2 3 4] y=[4 3 2 1]

6 years ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

6 years ago

Solved


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

6 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

6 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

6 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

7 years ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

7 years ago

Question


How to increase memory and max array length!?
Hi, I'm trying to process MRI images in MATLAB, but when I try to execute this line: T1_h = h1_aux'*ones(1,2^16); wh...

12 years ago | 4 answers | 0

4

answers