finding a vector variable from an equation
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
Hi everyone,
I have an equation equal to zero, in this equation I have 'g' how is a vector I am tring to find.
my equation:
g(2:end)*s - g(1:end-1) == 0
s- is a known scalar
g- is a 100x1 vector that I want to find
I tired usying smys, smy and solve but couldn't solve what 'g' is.
Thanks in advance.
댓글 수: 1
John D'Errico
2020년 10월 6일
Will you please stop asking the same question?
답변 (1개)
Ameer Hamza
2020년 10월 6일
Your equation seems to be equivalent to
. You need an initial value to solve this equation.
g = zeros(1, 100);
g(1) = 10; % initial condition
s = 0.5
for i = 2:100
g(i) = 1/s*g(i-1)
end
Or for this particular equation, following will also work
g = (1/s).^(0:99)*10
댓글 수: 0
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!