how can i ask the user for 2*2 matrix
Show older comments
I am trying to let the user enter input in matrix form
matr = input ('enter values in matrix form [a,b; c,d]');
but how can I make sure that the user input 2 columns only but whatver rows. I am new to manipulating array and matrix.
Answers (1)
madhan ravi
on 21 Apr 2019
Edited: madhan ravi
on 21 Apr 2019
if size(matr,2)>2
disp('Has more than 2 Columns beware!')
end
2 Comments
mat geek
on 21 Apr 2019
madhan ravi
on 21 Apr 2019
matr represents the input matrix data and 2 represents the number of columns , reading the documentation of size() will clear things for you.
doc size % in command window
help size
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!