필터 지우기
필터 지우기

How to write a sequential algorithm

조회 수: 2 (최근 30일)
juan sanchez
juan sanchez 2022년 4월 3일
답변: Voss 2022년 4월 3일
Example:
I have this algorithm A:
i=1 Columns=[1:36];
A=[(Columns(i)-1)*3+1:Columns(i)*3];
%Vector
When i=1 A=[1, 2, 3]
When i=2 A=[4, 5, 6]
When i=3 A=[7, 8, 9]
How to do another Algorithm A=?
When i=1 A=[1, 4, 7]
When i=2 A=[3, 5, 8]
and so on...

답변 (1개)

Voss
Voss 2022년 4월 3일
I think the first element of A when i = 2 should be 2 instead of 3. If so, then:
Columns=[1:36];
for i = 1:numel(Columns)
A = i+[0 3 6];
end

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by