how is keep the output values in program?

조회 수: 1 (최근 30일)
Erkan
Erkan 2022년 2월 10일
댓글: Erkan 2022년 2월 11일
Hi everybody, I ran the a program and got the results. After making a change in the same program, I ran it again and got the results. How can I compare the first results with the second results? i.e. how can I keep the first results?

답변 (1개)

AndresVar
AndresVar 2022년 2월 11일
you can use save and load, here is a quick example:
% run once, save results
x = 1;
y = x+1;
save('case1.mat')
% modify and run again, save results
x = 1;
y = x+2;
save('case2.mat')
% later...
data1 = load("case1.mat");
data2 = load("case2.mat");
% then data1.y = 2 and data2.y=3
See the documentation on save and load for more uses
  댓글 수: 3
Erkan
Erkan 2022년 2월 11일
thanks for answer
Erkan
Erkan 2022년 2월 11일
my results are a vector in the size 1x3000 and when i appoint to another variable, i don't see the results

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by