Error in 2018a: External converter methods for package-qualified classes not supported

13 Ansichten (letzte 30 Tage)
Hi,
My code (running perfectly in 2016a) cannot run in 2018a due to an error: External converter methods for package-qualified classes not supported The code looks like this: hr = P.pHR(a, b, c);
How to correct this to fit into 2018a? Or better, how to make my code backward compatible? Thanks,
  1 Kommentar
JFz
JFz am 16 Mai 2018
Matlab states that: "You cannot define a converter method that uses dots in the name in a separate file. Define package-class converters in the classdef file."
Is there a sample code for that? Thanks

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Aljen
Aljen am 27 Jun. 2018
Hello JFz,
I just had this same problem, and when looking a bit better at my code, i found the problem.
For me, the line that was pointed to in the error message was a method definition line in a class definition file. The problem here is that the definition is specified like a method-call, instead of a method-definition. Assuming this is a non-static method, the first input argument will be an object of the class. In the definition, this now is required to be specified as an input argument. (Previously, apparently, we were allowed to put this first first argument before the method name, even in the definition).
TLDR:
If you change
hr = P.pHR(a, b, c);
to
hr = pHR(P, a, b, c);
it will probably work, also in previous releases.

Weitere Antworten (0)

Tags

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by