Clear Filters
Clear Filters

Difference between size '[:140 x 1]' and 'size [140 x 1]'

1 view (last 30 days)
Diagnostics says:'Size mismatch. Input 2 expected value of size [:140 x 1]. Found size [140 x 1].'
what is the difference between '[:140 x 1]' and 'size [140 x 1]'?

Answers (1)

Honglei Chen
Honglei Chen on 2 Nov 2018
I assume this is what you get in your code generation report? [:140x1] means that the signal is a column vector with an upper bound of 140 elements, i.e., it could change but has at most 140 elements. On the other hand, [140x1] means the column vector is fixed size with 140 elements in it. You can find more information in the following link
HTH

Community Treasure Hunt

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

Start Hunting!