calling another matrix in a matrix

I have lots of matrices in my code and in the end ı took minimum values of these matrices which are called yakit_x(x=1:5). Now I need to replace them with conditions I decided to 1 number lower matrix but I dont know how to put it in the code.
like yakit_3 to yakit_2
for i=1:1801
if n_cevrim(i,1)<1500
yakit_cevrim(i,1)=yakit_(vites(i,1)-1);
end
end
I tried as "yakit_vites(i,1)-1" // "yakit_'vites(i,1)-1' " // "yakit_(vites(i,1)-1)" and they didnt work.

댓글 수: 1

Image Analyst
Image Analyst 2020년 12월 22일
So do yo have 5 arrays called yakit_1, yakit_2, yakit_3, yakit_4, and yakit_5?
And I don't know what this means "replace them with conditions I decided to 1 number lower matrix". Please explain.

댓글을 달려면 로그인하십시오.

답변 (1개)

James Tursa
James Tursa 2020년 12월 22일
편집: James Tursa 2020년 12월 22일

0 개 추천

Don't do this! Creating numbered named variables in your code like yakit_1, yakit_2, etc. leads to downstream coding problems as you have discovered. Instead, use structures or cell arrays or multi-dimensional variables, which will be easy to use. E.g., see this link:

카테고리

도움말 센터File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품

릴리스

R2020b

질문:

2020년 12월 22일

편집:

2020년 12월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by