フィルターのクリア

Smooth function not working in R2015b

3 ビュー (過去 30 日間)
Bradley Cory
Bradley Cory 2018 年 6 月 27 日
編集済み: Bradley Cory 2018 年 6 月 27 日
%%smoothing individual traces
[r c] = size(ft);
for k = 1:c
ft_smo(:,k) = smooth (ft(:,k), 0.2,'loess');
end
figure, plot(time_ft, ft_smo);
%figure, surf(ft_smo);
x_ax = [1:1:c];
figure, surf(x_ax, time_ft, ft_smo);
ylabel('time sec');
xlabel('bouton #');
zlabel('Fluo Int');
The error I get is:
Undefined function 'smooth' for input arguments of type 'double'.
Error in vglutpH_NH4Cl_Brad4 (line 167) ft_smo(:,k) = smooth (ft(:,k), 0.2,'loess');
  2 件のコメント
Stephen23
Stephen23 2018 年 6 月 27 日
@Bradley Cory: do you have the Curve Fitting Toolbox installed and a license for it?
Bradley Cory
Bradley Cory 2018 年 6 月 27 日
編集済み: Bradley Cory 2018 年 6 月 27 日
How do you check for that?
Edit: Newver mind, I don't have that installed. Thank you :)

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by