Define a variable?

15 views (last 30 days)
gamer
gamer on 17 Jun 2021
Commented: SungJun Cho on 17 Jun 2021
Hello,
I want to plot n spheres. Its working but the variable k is always red underlined because I didnt defined it before the loop. How can I define this variable?
for i = 1:n
k(i) = surf(r*x+p(i,1),r*y+p(i,2),r*z+r);
end

Accepted Answer

SungJun Cho
SungJun Cho on 17 Jun 2021
The red underline occurs when you have not preallocated your array (or matrix).
You can just do
k = zeros(1,n);
for i = 1:n
k(i) = surf(r*x+p(i,1),r*y+p(i,2),r*z+r);
end
and this should solve your problem.
  2 Comments
gamer
gamer on 17 Jun 2021
thanks:)
SungJun Cho
SungJun Cho on 17 Jun 2021
You're welcome!

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!