check dimensions for parameters

3 次查看(过去 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