- Timestamp:
- 06/12/20 10:24:30 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/qmu/setupdesign/QmuSetupVariables.m ΒΆ
r25028 r25033 17 17 18 18 if isa(variables,'uniform_uncertain'), 19 nlower= length(variables.lower,1);20 nupper= length(variables.upper,1);19 nlower=size(variables.lower,1); 20 nupper=size(variables.upper,1); 21 21 if (nlower ~= npart || nupper ~=npart), 22 22 error('QmuSetupVariables error message: upper and lower fields should have the same number of rows as the number of partitions'); 23 23 end 24 nlower= length(variables.lower,2);25 nupper= length(variables.upper,2);24 nlower=size(variables.lower,2); 25 nupper=size(variables.upper,2); 26 26 if (nlower ~= nt || nupper ~= nt), 27 27 error('QmuSetupVariables error message: upper and lower fields should have the same number of cols as the number of time steps');
Note:
See TracChangeset
for help on using the changeset viewer.