How Do I Address Syntax Warnings

1 vue (au cours des 30 derniers jours)
Robert Henson
Robert Henson le 11 Juil 2018
Commenté : Robert Henson le 2 Juil 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 commentaires
Daniel Kaminski de Souza
Daniel Kaminski de Souza le 2 Juil 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 le 2 Juil 2019
Thank you!

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Timetables in Finance dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by