Filter löschen
Filter löschen

want to create vector in output

1 Ansicht (letzte 30 Tage)
Ali Asghar
Ali Asghar am 25 Jul. 2019
Beantwortet: Walter Roberson am 25 Jul. 2019
Dear
i need help in get the output who solve the numbers by given formula and give output in vector form which have all data.....
x=[ 1 5 10 20 30 45];
n = numel(x); % number of elements in x
i=1;
for zzzz=1:n-1
b=x(i+1);
c=x(i);
wavelengthacceleration=[b-c]
i=i+1;
end
I need OUTPUT like
wavelengthacceleration = [4 5 10 10 15]
The above program show only final value of 15 in workspace.
Thank you

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Jul. 2019
wavelengthacceleration = diff(x) ;
With no loops needed

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by