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

Will you please stop asking the same question?

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 10월 6일

0 개 추천

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

이 질문은 마감되었습니다.

태그

질문:

2020년 10월 6일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by