copy element of matrix to matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a matrix x of 20x95 elements are in double. I want to copy element of x to y. Please provide code.
2 comentarios
Respuestas (2)
KALYAN ACHARJYA
el 25 de Mzo. de 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 comentario
Paulo Fonteles
el 5 de Jul. de 2022
that would link matrix A and B... so every change in B would affect A
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!