There is any function displacement
Mostra commenti meno recenti
This array
I want find differential between the numbers then, i want find displacement
and thank u
Risposte (1)
Joseph Cheng
il 17 Mag 2015
Modificato: Joseph Cheng
il 17 Mag 2015
you can use the function diff() to perform this differential. so you'll have something like
da = diff(a); %this will get your your [4 5 ...]
then you can perform your da./a(1:end-1)*100.
7 Commenti
abduall hassn
il 17 Mag 2015
Modificato: abduall hassn
il 17 Mag 2015
Joseph Cheng
il 17 Mag 2015
Modificato: Joseph Cheng
il 17 Mag 2015
well then you did not explain it very well. this will give you the displacement that you asked for of each neighboring indexes, so by going diff(a) you get your first second third differential like you explained. Then you can divide by the original and multiply by the 100.
so if
da = 100*diff(a)./a(1:end-1)
is not what you are looking for please explain more
abduall hassn
il 17 Mag 2015
abduall hassn
il 17 Mag 2015
Image Analyst
il 17 Mag 2015
Try executing this line of code before you do that:
format long g;
abduall hassn
il 19 Mag 2015
Joseph Cheng
il 19 Mag 2015
da = diff(a,[],2)./a read the documentation of the function diff() to see that by performing diff(a,[],2) we perform it in the correct dimension.
Categorie
Scopri di più su Matrix Indexing in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!