Using Variable inside For loop Iteration

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;

Answers (1)

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 Comments

Thanks for the answer! Unfortunately though, I am getting the error for obstnew2(i+(particle_rad),j) = 3; line. This leads me to believe that I cannot add a variable to an index value. Any ideas on how I could get around this?
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 on 15 Feb 2017
Edited: Stephen23 on 15 Feb 2017
"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.

Sign in to comment.

Asked:

on 15 Feb 2017

Edited:

on 15 Feb 2017

Community Treasure Hunt

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

Start Hunting!