how to solve this problem? with message subscript indices must either be real positive integers?

1 次查看(过去 30 天)
Hello, I get this error, Subscript indices must either be real positive integers or logicals.
The line with this error is,
An=110;
Am=100;
DUM(100,An/(Am+1)+1)={''};

采纳的回答

Star Strider
Star Strider 2015-3-6
The index you’re calculating evaluates to 2.0891... so as a float, it definitely does not meet the integer-or-logical criterion.
I’m not certain what you’re doing with your indices, but one option would be to use the fix function to produce an integer index:
DUM(100,fix(An/(Am+1))+1)={''};
Other options, if fix does not produce the result you want, are of course are ceil, floor, and round.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by