Is it possible for me to get the answer of certain line in a function?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone. Can i know, is it possible to me to get the answer of certain line in this function? Now I want to check the answer for the line 'signal_interp.' can comeone help me. thanks in advance ya!
function [state]=makestatelocal(signal,hc,n_dim,delay)
%% check for inputs
if nargin <= 3
delay = 10;
end
%% time
signal_new = signal(hc(1):hc(end));
t_new = 1:length(signal_new);
t_interp = (1:n_samples)/n_samples*t_new(end);
signal_interp = interp1(t_new,signal_new,t_interp,'spline');
2 件のコメント
Rik
2020 年 4 月 22 日
You can set a breakpoint on that line to pause execution, or you can add the variable as an ouput. Is either of those what you mean?
採用された回答
Rik
2020 年 4 月 22 日
Moved from comment:
You can set a breakpoint on that line to pause execution, or you can add the variable as an ouput.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!