Cut radio signal by hours

조회 수: 1(최근 30일)
Shahar ben ezra
Shahar ben ezra 2020년 11월 11일
댓글: Shahar ben ezra 2020년 11월 21일
Hi
I have an excel file
I get in the file a date, hours and amplitude by frequency
How can I "cut" the hours as I wish
For example I want to get a new matrix but only between the hours of 00:00 and 12:00

채택된 답변

Walter Roberson
Walter Roberson 2020년 11월 11일
I26 = readtable(YourFileName);
mask = I26.time < hours(12);
selected_I26 = I26(mask,:);
This would extract only the entries before noon. <= if you want to include noon.
  댓글 수: 10
Shahar ben ezra
Shahar ben ezra 2020년 11월 21일
Tnx Peter Perkins :)
I will try that too

댓글을 달려면 로그인하십시오.

추가 답변(0개)

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by