Assemble of column vector in column
Mostra commenti meno recenti
FG=[];
FG=zeros(N,1);
m=5;
for n=1:1:ne %Calling elements
for i=1:1:6
d2=dof(n,m+i-1); %Calling degree of freedom for second node
force=eval(['force',num2str(n)]); %Calling elemental force vector
FG(d2,1)= FG(d2,1)+force(i,1); %calling element of the elemental force vector and adding to global force vector
end
end
6 Commenti
Chaudhary P Patel
il 11 Gen 2021
Mathieu NOE
il 11 Gen 2021
hello
sure
your code is about a single column vector (second dim = 1 , in all your code)
FG=zeros(N,1);
FG(d2,1)= FG(d2,1)+force(i,1);
Chaudhary P Patel
il 11 Gen 2021
Mathieu NOE
il 11 Gen 2021
sorry
I don't understand what you intend to do ... can you somehow show on your code / describe what you are trying to do ?
Chaudhary P Patel
il 11 Gen 2021
Mathieu NOE
il 12 Gen 2021
ok - good luck for the future
Risposte (0)
Categorie
Scopri di più su Get Started with MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!