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 个评论

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;

请先登录,再进行评论。

 采纳的回答

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

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Dynamic System Models 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by