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에 대해 자세히 알아보기

질문:

2022년 7월 5일

댓글:

2022년 7월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by