Measurement of Pulse and Transition Characteristics

4 ビュー (過去 30 日間)
Mahmoud Khedr
Mahmoud Khedr 2019 年 7 月 30 日
回答済み: Samatha Aleti 2019 年 8 月 2 日
In the example "Measurement of Pulse and Transition Characteristics" in Matlab, the first line to use is "load clocksig clock1 time1 Fs", how do I save my signal to load it that way ?

採用された回答

Samatha Aleti
Samatha Aleti 2019 年 8 月 2 日
Hi,
To load in a similar way as you mentioned, you can save the signal as a mat-file. As an example, saving "x", "y" in a mat-file “signal.mat” as follows:
x= 1:10;
y= 10:20;
% save the vectors into mat-file
save('signal.mat','x','y')
%load mat-file
load signal
If you want to load only selected vectors from mat file (let "x") specify it as follows:
load signal x
Refer the following link for more information

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by