필터 지우기
필터 지우기

Making a plot to find out when, during a 24 hour period, two rows in excel has the same value.

조회 수: 3 (최근 30일)
Hello
I have two rows of data in excel that was recorded on two seperate days with a sample time of 6 seconds, as seen in the image below. I was wondering if there's a way to plot a graph in matlab, with 24 hours and sample time of 6 seconds on the x-axis, so that I can see when the data from the two days intersects and have the same value.

답변 (1개)

Bob Thompson
Bob Thompson 2019년 2월 6일
편집: Bob Thompson 2019년 2월 6일
Do you specifically need to plot the results? Why not just use logic indexing?
t = data(:,ismember(data(:,2:3,1),data(:,2:3,2)),1); % Note that I assumed your
% data was put in a 3D array
% called 'data' which
% contains your image as the
% first
% and second dimensions,
% with each day as the third
% dimension.
% Modify as needed.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by