필터 지우기
필터 지우기

add a row to a matrix each loop

조회 수: 8 (최근 30일)
james sinos
james sinos 2021년 9월 12일
답변: Matt J 2021년 9월 12일
lets say i have a matrix somthing liek that:
for each loop there is a search for solutions,
if a solution is found for a, iteration loop it will be added as new row in the matrix , othere wise it will pass to find another solution .
how we can proceed ?
thanks

답변 (1개)

Matt J
Matt J 2021년 9월 12일
Just concatenate:
A=eye(5)
A = 5×5
1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1
newrow=rand(1,5);
A=[A;newrow]
A = 6×5
1.0000 0 0 0 0 0 1.0000 0 0 0 0 0 1.0000 0 0 0 0 0 1.0000 0 0 0 0 0 1.0000 0.5232 0.3248 0.2297 0.4854 0.3321

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by