How can I rewrite this in a simple short code

1 次查看(过去 30 天)
MID is a 1 x 15 Matrix with numerical val
ea1 = 1;
ea2 = ((MID(1,2)-MID(1,1))/(MID(1,2)));ea3 = ((MID(1,3)-MID(1,2))/(MID(1,3)));
ea4 = ((MID(1,4)-MID(1,3))/(MID(1,4)));ea5 = ((MID(1,5)-MID(1,4))/(MID(1,5)));
ea6 = ((MID(1,6)-MID(1,5))/(MID(1,6)));ea7 = ((MID(1,7)-MID(1,6))/(MID(1,7)));
ea8 = ((MID(1,8)-MID(1,7))/(MID(1,8)));ea9 = ((MID(1,9)-MID(1,8))/(MID(1,9)));ea10 = ((MID(1,10)-MID(1,9))/(MID(1,10)));
ea11 = ((MID(1,11)-MID(1,10))/(MID(1,11)));ea12 = ((MID(1,12)-MID(1,11))/(MID(1,12)));ea13 = ((MID(1,13)-MID(1,12))/(MID(1,13)));ea14 = ((MID(1,14)-MID(1,13))/(MID(1,14)));ea15 = ((MID(1,15)-MID(1,14))/(MID(1,15)));
EA = abs([ea1;ea2;ea3;ea4;ea5;ea6;ea7;ea8;ea9;ea10;ea11;ea12;ea13;ea14;ea15]);

采纳的回答

Voss
Voss 2022-1-21
EA = abs([1 (MID(2:end)-MID(1:end-1))./MID(2:end)].');

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by