Filter löschen
Filter löschen

How Do I Address Syntax Warnings

3 Ansichten (letzte 30 Tage)
Robert Henson
Robert Henson am 11 Jul. 2018
Kommentiert: Robert Henson am 2 Jul. 2019
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 Kommentare
Daniel Kaminski de Souza
Daniel Kaminski de Souza am 2 Jul. 2019
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.
Robert Henson
Robert Henson am 2 Jul. 2019
Thank you!

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Timetables in Finance finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by