problem with sum command

1 次查看(过去 30 天)
bahare karimkhani
bahare karimkhani 2013-12-26
编辑: Wayne King 2013-12-26
when i use sum(a), while the elements of 'a' are not integer, i got this error:Subscript indices must either be real positive integers or logicals. what is the problem?

回答(1 个)

Wayne King
Wayne King 2013-12-26
编辑:Wayne King 2013-12-26
You must have a variable in your workspace called sum, which is a bad idea.
Make sure that your program or script does not create a variable called sum.
If you enter,
>>which sum
You'll see
sum is a variable.
Enter
clearvars sum
Then try to use sum() again. You should avoid creating variables that have the same name as functions you want to use.

类别

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