MATLAB: How to call a variable in the middle of an input

call out a variableinputinput variablematlab functionvariable

I want to call out a variable in the middle of an input but I canĀ“t seem to make it work. Here is an example of what i want to do and how i am trying to do it.
radius=input('insert the radius of the circle here: ')
area=('insert the area of the circle whose radius is',radius,' here: ' )

Best Answer

Use sprintf(...)