Unexpected error on line with property validation

1 次查看(过去 30 天)
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.

采纳的回答

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

更多回答(1 个)

Ramachandrareddy Gadi
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 个评论
Rik
Rik 2020-9-8
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?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

产品


版本

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by