I want to divide every column element . for example 1nd element with 2nd then 2nd with 3rd and so on
1 次查看(过去 30 天)
显示 更早的评论
I want to find the commulative division of a coulumn. For example, divide 1st column element with 2nd element and then 2nd with 3rd. Can anybody help me.
0 个评论
采纳的回答
KALYAN ACHARJYA
2022-1-26
编辑:KALYAN ACHARJYA
2022-1-26
#data is a column/row vector
data1=circshift(data,[0 -1]);
temp=data./data1;
#Ignoring last element, as devide present by next one
result=temp(1:end-1)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!