How Do I Address Syntax Warnings

1 次查看(过去 30 天)
I have a program that ran fine in 2017b, but now in 2018a I get a syntax warning:
Warning: This syntax will be removed in a future release. See the documentation for recommended usage. > In movavg (line 77) In leadlag (line 73) In parallel_function>make_general_channel/channel_general (line 917) In remoteParallelFunction (line 46)
How do I find the specific syntax problems? Also, where in the documentation can I read about this and make changes?
The warning is very persistent and outputs to the command window (or to the HTML file if publishing is selected). I've tried to suppress warning, but that doesn't prevent the output. How do I prevent/suppress these warnings when my program executes?
  3 个评论
Daniel Kaminski de Souza
movavg changed from old functionality:
to the newest one:
I changed code to:
% [lead,lag] = movavg(P,N,M,'e');
lead = movavg(P,'exponential', N);
lag = movavg(P,'exponential', M);
But unfortunately when comparing old calculated lead and lag to previous ones, results don't match exactly.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Timetables in Finance 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by