Help creating a vector in a loop

2 次查看(过去 30 天)
Liam Ryan
Liam Ryan 2019-10-2
Hi, I want to create a vector in a loop from two other vectors:
A = [10 14 19 20]
B = [19 34 56 49]
Those two are the vectors at the top which I want to use to make another vector and I want to make a new vector such that it is like element by element operation using the following for loop:
for i = 1:length(A)
new_vector(i) = linspace(A(i),B(i),25)
end
So in the first iteration I want
new_vector = linspace(10,19,25)
since A(1) = 10, so first argument of linspace and B(1) = 19 second argument. But when I try doing this, it says:
Unable to perform assignment because the left and right sides have a different number of elements.
Help out guys

回答(2 个)

Walter Roberson
Walter Roberson 2019-10-2
new_vector{i} = linspace(A(i),B(i),25);
Notice the {} instead of ()
  1 个评论
Walter Roberson
Walter Roberson 2019-10-2
linspace(0,1,25).' .* (B-A) + A
No loop needed in this special case of the length of output vectors being consistent.

请先登录,再进行评论。


Andrei Bobrov
Andrei Bobrov 2019-10-2
n = numel(A);
new_vector = zeros(25,n);
for ii = 1:n
new_vector(:,ii) = linspace(A(ii),B(ii),25);
end

类别

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