program to get the user to enter the values

2 views (last 30 days)
function y=mx+c
how can i write a program to get the user to enter the values for x and c and display the result for y

Accepted Answer

Davide Ferraro
Davide Ferraro on 24 Feb 2011
If you are expecting a command line input you can use the INPUT command:
A quick and nice graphic way is to use the function INPUTDLG:
  2 Comments
buxZED
buxZED on 24 Feb 2011
clear
clc
stu_id=0.2529;
prompt = {'Gravity (g):','Angle (a):','iv (V0):'};
dlg_title = 'Enter the values for';
num_lines = 1;
def = {'9.81','35','25.820880000000002'};
answer = inputdlg(prompt,dlg_title,num_lines,def);
how do i now use the user provided data?
Walter Roberson
Walter Roberson on 24 Feb 2011
See the separate question you posted on this.

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 24 Feb 2011
Consider also questdlg()

Categories

Find more on Dialog Boxes in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!