Effacer les filtres
Effacer les filtres

To Enter a Value in a Formulate

2 vues (au cours des 30 derniers jours)
Murat Kocaman
Murat Kocaman le 29 Juin 2018
Réponse apportée : jonas le 29 Juin 2018
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 commentaires
jonas
jonas le 29 Juin 2018
You mean that you want the script to stop and ask for user input?
Murat Kocaman
Murat Kocaman le 29 Juin 2018
Yes I think so.

Connectez-vous pour commenter.

Réponse acceptée

jonas
jonas le 29 Juin 2018
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})

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by