How to find dimension problems?

1 view (last 30 days)
Leo Müller
Leo Müller on 24 Mar 2016
Commented: Leo Müller on 25 Mar 2016
Hello,
my sFunction block has to run on a dSPACE simulator. Therefore I have to make sure that all dimensions are set correctly.
Is there a way to check that in Matlab and Simulink?
Thank you very much!
  2 Comments
Leo Müller
Leo Müller on 25 Mar 2016
Matlab and Simulink are comparatively tolerant when it comes to dimensional mismatches. dSPACE is not as tolerant. I wonder if there is a tool that would check all dimensions for errors.

Sign in to comment.

Answers (1)

Krish Desai
Krish Desai on 25 Mar 2016
You could try to use the size function. For example:
A= 1: 5
A= 1 2 3 4 5
size(A)
ans= 1 5

Categories

Find more on General Applications in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!