Clear Filters
Clear Filters

Weird Port width mismatch error.

5 views (last 30 days)
Lóránt Farkas
Lóránt Farkas on 21 Jul 2023
Commented: Walter Roberson on 23 Jul 2023
I got the sollowing error:
Port width mismatch. Input 'signal' expects a signal of size [1.3608e+06x1]. The signal received is of size [1360800x1].
However, 1.3608e+06 is exactly 1360800. How to dispose the error message?
  1 Comment
Paul
Paul on 23 Jul 2023
Hi Lorant,
Assuming this is Simulink, can you post a screen shot of the relevant portion of the model that's causing the error and the full text of the error message that comes up in the diagnostics window? Overlay the signal dimensions on the diagram from Debug -> Information Overlays.
Also, I wonder if there is a maximum allowable dimension for a signal. I coudn't find that info in the documentation.

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 21 Jul 2023
A = 1.3608e+06
A = 1360800
B = A+1
B = 1360801
fprintf('A = %.4e\n', A)
A = 1.3608e+06
fprintf('B = %.4e\n', B)
B = 1.3608e+06
A == B
ans = logical
0
The two values both display as 1.3608e+06 but the values are not the same.
  2 Comments
Lóránt Farkas
Lóránt Farkas on 23 Jul 2023
Ok, but how could I find out what numbers he expect? If I click on the error, then I see:
CompiledSize:[1360800, 1]
and the arrow that going in has also 1360800x1.
So what is the problem? Why do I get error, and how to get rid of it?
Walter Roberson
Walter Roberson on 23 Jul 2023
Does this happen to be for a MATLAB Function Block, or is the signal output of a MATLAB Function Block? And if so then is the size of the array being calculated in terms of an expression that involves either division or non-integer values ? For example 13608000*0.1 is not guaranteed to be exactly the integer 1360800

Sign in to comment.

Tags

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!