substituting values into an array

2 次查看(过去 30 天)
Hi
I need to substitute some values from one arry into another but is getting the error:
??? Subscript indices must either be real positive integers or logicals.
The arrays in question as well as my current attempt are as given below:
K = 130;
T = [0 33 57];
V = [0.9 0 .5];
period = ones(2,K);
period(1,:) = 0:K-1;
for i = 1:size(T,2)
period(2,T(1,i):end) = V(1,i);
end
Can anyone help me with this problem?

采纳的回答

Sean de Wolski
Sean de Wolski 2011-6-21
You can't have period(0), it tries to reference this when
i = 1
period(2,0:end); %substituting T(1)
Start your indexing at one instead. Keep a reference vector (like T) if you need to know what period(x) corresponds to.
  1 个评论
Morten Jensen
Morten Jensen 2011-6-21
of course.. thanks! I must have stared myself blind looking for the error

请先登录,再进行评论。

更多回答(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