Loop Function to index table and create new vairables
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I am looking to try and create seperate tables for differen failure events.
I have filtered each failure event using the find function;
Ones=find(array>0.5);
I now want to creat several tables of the measure parameters (newtimetable) based on the identified rows in vairable (Ones). I was thinking of using a for loop, but cant seem to get it to work. If I was to do it manually for each table the code would be:
a=10
a1=Ones(1,1);
Event1=newTimetable((a1-a):a1,:);
a2=Ones(2,1);
Event2=newTimetable((a2-a):a2,:);
I hope that makes sense and open to any suggestions or methods
1 件のコメント
Bob Thompson
2021 年 6 月 4 日
Are you getting a specific error message when you perform the for loop? How do you know it's not working?
回答 (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!