copy element of matrix to matrix

2 views (last 30 days)
suraj singh
suraj singh on 25 Mar 2018
Commented: Paulo Fonteles on 5 Jul 2022
I have a matrix x of 20x95 elements are in double. I want to copy element of x to y. Please provide code.
  2 Comments
KALYAN ACHARJYA
KALYAN ACHARJYA on 25 Mar 2018
Clarify your question in more detail.
suraj singh
suraj singh on 25 Mar 2018
Sir, I want to copy all elements of one matrix to other matrix and number of rows and column are 20x95 in the input matrix. Output matrix should be 20x95.

Sign in to comment.

Answers (2)

Birdman
Birdman on 25 Mar 2018
Isn't it simply
y=x
?

KALYAN ACHARJYA
KALYAN ACHARJYA on 25 Mar 2018
%Suppose A is your Input matrix, B is your output matrix
%if matrix is already generated within code, no need to input statement-next line
A=input('Enter The Matrix Elements');
B=A;
disp(B);
%Now Matrix B having same elements as Matrix A
  1 Comment
Paulo Fonteles
Paulo Fonteles on 5 Jul 2022
that would link matrix A and B... so every change in B would affect A

Sign in to comment.

Categories

Find more on Creating and Concatenating Matrices 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!