matlab-输入和输出以及菜单

>> disp(A)
     6    -4     8
    -5    -3     7
    14     9    -5

>> disp('hello,world')
hello,world
>> disp(A)
     6    -4     8
    -5    -3     7
    14     9    -5

>> x=input('please input a number:')
please input a number:9

x =

     9

>> x=input('please input a string:','s')
please input a string:sss

x =

sss

>> x

x =

sss

>> k=menu('name','o1','o2')


matlab-输入和输出以及菜单
 

 > temp=input('Enter [x y] pair:')
Enter [x y] pair:[1,2]

temp =

     1     2

>> temp(1)

ans =

     1

>> temp(2)

ans =

     2

你可能感兴趣的:(matlab)