Unexpected error on line with property validation

1 Ansicht (letzte 30 Tage)
Pavel Rubis
Pavel Rubis am 28 Mai 2020
Kommentiert: Rik am 8 Sep. 2020
Could u guys pls help me? There is a peace of code with definiton of class propreties:
classdef CellularAutomat
properties
FieldType logical
BordersType {mustBeInteger, mustBeInRange(BordersType,[1,3])}
N double {mustBePositive, mustBeInteger}
Base function_handle
Lambda function_handle
Zbase double
Miu0 double= 0
Miu double = 1
Cells(1,:) CACell
end
I have developed it on R2017B, so everything, of cource, was ok.
But on the R2016A takes pleace a strange error:
Error: File: myfile.m Line: 6 Column: 21
Unbalanced or unexpected parenthesis or bracket.
Line: 6 Column: 21 - is location of a brace opening the list of property validation functions after the property BordersType.

Akzeptierte Antwort

Steven Lord
Steven Lord am 28 Mai 2020
The ability to validate property values that way was introduced in release R2017a. It won't work in earlier releases.

Weitere Antworten (1)

Ramachandrareddy Gadi
Ramachandrareddy Gadi am 8 Sep. 2020
A = [1 2 3
4 5 6
7 9 0]
A =
3ff0000000000000 4000000000000000 4008000000000000
4010000000000000 4014000000000000 4018000000000000
401c000000000000 4022000000000000 0000000000000000
A
A =
3ff0000000000000 4000000000000000 4008000000000000
4010000000000000 4014000000000000 4018000000000000
401c000000000000 4022000000000000 0000000000000000
  1 Kommentar
Rik
Rik am 8 Sep. 2020
This isn't an answer. It was intially caught by the spam filter, although it doesn't look like spam to me.
What is you question? It looks like your format is set to display the hex representation of the data. Is your question how to undo that?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by