Info
此问题已关闭。 请重新打开它进行编辑或回答。
What does diff(one inequality) do?
4 次查看(过去 30 天)
显示 更早的评论
Hi, everyone, I saw a line of code: A=diff(B>=C), I am not sure what it does. Does it mean that, if B>=C, then do the differentiation between B and C? Hope someone with experience can help me answer this question. Thanks a lot.
2 个评论
Stephen23
2021-8-24
Lets try it:
B = rand(1,11);
C = rand(1,11);
V = B>=C
A = diff(V)
So far everything behaves just as the GE and DIFF documentation explain.
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!