How i can input values from user in array

203 ビュー (過去 30 日間)
Usman Altaf
Usman Altaf 2015 年 9 月 22 日
回答済み: Walter Roberson 2022 年 10 月 1 日
a=input('Enter no ')
  1 件のコメント
Aranxa Zepeda Herrera
Aranxa Zepeda Herrera 2020 年 8 月 23 日
do you know how now?

サインインしてコメントする。

回答 (5 件)

Kai
Kai 2022 年 9 月 30 日
編集済み: Kai 2022 年 9 月 30 日
%I havent seen a good answer for this question, so I figured I'd give it a
%shot, this is what I came up with, Kai
%Goal, input user values into an array, Works exact same for matrix just
%that only put in 1 row or 1 columnn and you have an array
%because of broadness of question, lets make a matrix of our own
sizeRow = input('How many rows of a matrix do you want: ');
sizeColumnn = input('How many columns of a matrix do you want: ');
matrix = [];
%for each row, for each column, lets add the user value to __ matrix
for i = 1:sizeColumnn
for j = 1:sizeRow
matrix(j,i) = input(['Enter values for columnn ' num2str(i) ' : ']);
end
end
%Lets see what our matrix is now
matrix

Thorsten
Thorsten 2015 年 9 月 22 日
>> x = input('Please enter Matlab matrix> ')
Please enter Matlab matrix> [2 3 4; 5 6 7]
x =
2 3 4
5 6 7
  1 件のコメント
Usman Altaf
Usman Altaf 2015 年 9 月 22 日
I mean user does not know how to write matrix. program should be able to take values in matrix

サインインしてコメントする。


Chidinma Emmanuel-Okereke
Chidinma Emmanuel-Okereke 2020 年 2 月 27 日
y = input('Enter numbers in brackets, in the form [x,x,x,x,x,x]:');
  1 件のコメント
Saksham C
Saksham C 2021 年 6 月 15 日
Remove the commas, give input without it. Eg. [x x x x]

サインインしてコメントする。


Pankaj Maurya
Pankaj Maurya 2021 年 12 月 19 日
array=input('Inter the array value')

Walter Roberson
Walter Roberson 2022 年 10 月 1 日
consider an editable uitable().

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by