Using find function in Matlab to find data at specific time
显示 更早的评论
How can I use the find function in MATLAB in order to create a variable that includes data starting at time, t=0?
I have tried this:
N = find(Data(:)==0);
but I just get N equal to the number of data that are at t=0, not the actual data themselves.
1 个评论
dpb
2021-3-27
Don't need find at all here...
zData=Data(Data==0);
"Logical Addressing"
回答(1 个)
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!