To Enter a Value in a Formulate

Hello,
I have a formulate and use seperate value for each calculation. I would like to enter the value manually.
An example:
formulate = 3*pi*r^2*4*T
Here I want to enter T value manually for each calculation.
Which code example should I use for this ?

2 Comments

You mean that you want the script to stop and ask for user input?
Yes I think so.

Sign in to comment.

 Accepted Answer

There are some different options. If you want to enter the value in the command window:
T = input('Enter value of T')
or if you want a dialog box:
V = inputdlg('Enter value of T')
T = str2num(V{1})

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Asked:

on 29 Jun 2018

Answered:

on 29 Jun 2018

Community Treasure Hunt

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

Start Hunting!