check dimensions for parameters

조회 수: 12 (최근 30일)
Marlo Wegener
Marlo Wegener 2016년 5월 10일
편집: Stephen23 2016년 5월 10일
Hello, in a current setup I very often load datasets from an m file and write over current variables in the base workspace. My problem is that sometimes the dimensions differ and I then get problems with my simulations. Lets say I have a variable a = 1 in my workspace and then try to write a = [1 1; 1 1] from my m file. In that case I would like to cancel that and inform the user that there was a dimension mismatch for that variable. I tried some quite complicated way might work by using eval and evalin but there must be an easier way to fix that...can someone help me?
  댓글 수: 1
Stephen23
Stephen23 2016년 5월 10일
편집: Stephen23 2016년 5월 10일
Avoid using eval, evalin, assignin, etc. They will only cause problems. Write functions, and pass the arguments properly. Checking input arguments is then trivial.
Guillaume's answer and explanation is spot on.

댓글을 달려면 로그인하십시오.

답변 (1개)

Guillaume
Guillaume 2016년 5월 10일
The answer is to change the way you work and rewrite your script as a function. Instead of dumping your dataset into the base workspace you would pass these inputs to your function, which in the first step would simply validate the inputs and issue an error message if they're the wrong shape.
For validating inputs, you can use validateattributes:
function [possibleoutput] = usedtobescript(a, b, c) %use better variable names
validateattributes(a, {'numeric'}, {'scalar'}); %issues an error if a is not numeric or scalar
%...
end
  댓글 수: 3
Marlo Wegener
Marlo Wegener 2016년 5월 10일
I also have to filter out all names as I have structures of different size as e.g. A.Ag.C.var1, A.Ag.D.var2, A.Cd.T.var3 and so on
Guillaume
Guillaume 2016년 5월 10일
As I said, use functions not scripts. And above all, do not use assignin, evalin, eval and co. They're not recommended for a reason. They cause more problem than they solve.
Use function inputs and outputs to pass variables between different pieces of code. It's much cleaner and it's easier to keep track of what is what. A function should not read or write variables in the base workspace.
As an aside, since scripts share the base workspace, there is no reason for a script to use evalin or assignin. The script can access the variable directly.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Variables에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by