Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Matrix with element that change with 'for loop'

Status
Not open for further replies.

sami1984

Mechanical
Jan 25, 2013
2
Hello every body
I am working on a project that I need to find matrix similar to this one
% Beginning of the Code
clear all;close all;clc;
for m=1:10
A11(m)=m+1;
B11(m)=2*m;
D11(m)=2*m+1;
abd=[A11(m) B11(m);B11(m) D11(m)];
end
%End of the Code
where I want the matrix 'abd' get different value for each value of 'm' ,in the code above I only get the value at m=10;and if I use abd(m) it won't be right since in that form it just indicates the element.so please help and suggestions.
 
Replies continue below

Recommended for you

??????????????????????? You're doing that exact thing with A11, B11, and C11??????

TTFN
faq731-376
7ofakss
 
No it is not the same thing for the matrix abd; I was looking for the answer of that.I got some help from someone and it seems that I need to define abd:),:,m)not just abd(m)and to make the code run faster I need to use prelocatting abd=zeros(2,2,101) where m=1:101.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor