How to store all the A matrix that I have got from every iteration

조회 수: 1 (최근 30일)
for a = linspace(15,75,5)
theta0 = a
y = ((tan(theta0)*x)) - (g*((x.^2))./(2*((v0*cos(theta0)).^2))) + y0
A = [theta0 y]
end

채택된 답변

Walter Roberson
Walter Roberson 2021년 12월 31일
a_vals = linspace(15,75,5)
num_a = length(a_vals);
A = zeros(num_a, 2);
for a_idx = 1 : num_a
a = a_vals(a_idx);
theta0 = a;
y = ((tan(theta0)*x)) - (g*((x.^2))./(2*((v0*cos(theta0)).^2))) + y0
A(a_idx, :) = [theta0 y];
end

추가 답변 (1개)

Jonas
Jonas 2021년 12월 31일
is y a single value? then A would be a row vector. you can initialize your A before the loop as A=nan(numel(linspace(15,75,5)),2) and change the A line to A(a/15,:)= [theta0 y]

카테고리

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