Filter löschen
Filter löschen

is my code below is correct?

2 Ansichten (letzte 30 Tage)
Venkata Rama Krishna Gona
Venkata Rama Krishna Gona am 13 Aug. 2020
Beantwortet: KSSV am 16 Aug. 2020
Xp=zeros(f,2);
F=zeros(f,2);
Nu=zeros(1,f);
f=2;
i=1;
while i<=f
disp(['For force F01',num2str(i)]);
F0(i,1)=input('enter the amplittude of forces column matrix in row wise--');
i=i+1;
end
the need the code to store the matrices values as F011 and F012. please help me out.Thanks

Antworten (1)

KSSV
KSSV am 16 Aug. 2020
Try this:
n=input('number of elements = ') % n = 4
for i=1:n;
a(i)=input('elements-'); % 1 2 5 7
end
a=reshape(a,n/2,n/2)' % not should be even for this example

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by