Using Variable inside For loop Iteration

3 次查看(过去 30 天)
Hi Folks,
I am trying to use a variable inside a for loop iteration, as seen below in the code I have pasted in. I guess the variables don't quite matter too much, but I will explain a bit. Particle_rad is simply a number and obstnew is a large matrix. i is taken as the row value and ii is taken as the column value of the matrix. Essentially, I want to initialize at (i,ii) and then add the particle_rad value to i in order to place a 3 at the new location. Obviously I get an error when I try to do this, and here is the error: Subscript indices must either be real positive integers or logicals. I understand the error, but I am just wondering if there is any way around this. If anyone requires any more explanation, please let me know.
Thank you, Sean
if obstnew2(i,ii) == 3
for j = 1:particle_rad
obstnew2(i+(particle_rad),j) = 3;
obstnew2(i+(particle_rad),-j) = 3;

回答(1 个)

Kaushik Lakshminarasimhan
You're probably getting the error because of the line obstnew2(i+(particle_rad),-j) = 3. You have "minus j" which makes the index negative.
  3 个评论
Kaushik Lakshminarasimhan
You can do that as long as i+(particle_rad) is a real positive integer. Are you sure the value of particle_rad is a non-negative integer?
Stephen23
Stephen23 2017-2-15
编辑:Stephen23 2017-2-15
"I cannot add a variable to an index value"
You certainly can add variable to create an index. An index is a variable, just like any other, and can be created by adding other variables, multiplying, or any other numeric operation. Of course the variable when it is used as an index must be a integer greater then zero. A common beginner error is to supply a non-integer value.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by