Unexpected error on line with property validation

1 visualizzazione (ultimi 30 giorni)
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.

Risposta accettata

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

Più risposte (1)

Ramachandrareddy Gadi
Ramachandrareddy Gadi il 8 Set 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 Commento
Rik
Rik il 8 Set 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?

Accedi per commentare.

Categorie

Scopri di più su Programming in Help Center e File Exchange

Prodotti


Release

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by