program to get the user to enter the values

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

 采纳的回答

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 个评论

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?
See the separate question you posted on this.

请先登录,再进行评论。

更多回答(1 个)

类别

帮助中心File Exchange 中查找有关 App Building 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by