How do i transfer contents from one variable to another?

Hi!
Would like to get help.
How do i transfer the contents of variable H to K1?
Variable H contains/is a matrix of size 1x5913.
Thank You!

1 Commento

what do you mean with "transfer the content"? Do you want K1 to have the same data as H?
In that case you can simply do
K1 = H;

Accedi per commentare.

 Risposta accettata

K1 = 2 ;
H = 1:5913 ;
K1 = H
K1 = 1×5913
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by