Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
how to record many lines in the data reads when only one appliance is turned on to off and beside no other appliance is turned on?
조회 수: 1 (최근 30일)
이전 댓글 표시
only one appliance is turned on to off and beside no other appliance is turned on
댓글 수: 10
Walter Roberson
2018년 12월 5일
The question is not clear .Where is the input from? Record to where ?
What does this have to do with MATLAB Compiler or MATLAB Coder?
Mohammad Junayed
2018년 12월 6일
The algorithm recognizes the opening of a single appliance (electrical appliance) and counts the number of data from opening to closing of a single appliance
Walter Roberson
2018년 12월 6일
What is the input? A series of voltage readings perhaps, with the program having to deduce from the voltagess how many appliaces are active?
Jan
2018년 12월 6일
편집: Jan
2018년 12월 6일
The relation between the question
"only one appliance is turned on to off and beside no other appliance is turned on"
and the code is not clear:
%% ******************************************************************************************************
% º¯ÊýÃû³Æ£ºEventLog
% º¯Êý¹¦ÄÜ£º±£´æʶ±ðʼþ»òÒì³£µ½txtÎı¾EventLog.txtÖÐ
% ÊäÈë²ÎÊý£º sVersion - °æ±¾ÐÅÏ¢
% sCurrentTime - µ±Ç°²âÊÔʱ¼ä
% sTime - ²âÊԼǼÄÚ±£´æµÄʱ¼ä
% sEvent - ·¢ÉúµÄʼþ
% Êä³ö²ÎÊý£ºÎÞ
%% ******************************************************************************************************
function [ ] = EventLog(sFielsName, sVersion, sCurrentTime, sTime, sEvent)
fid = fopen(sFielsName,'a+');
fprintf(fid,'| %s |\t ',sVersion);
fprintf(fid,'| %s |\t ',sCurrentTime);
fprintf(fid,'| %s |\t ',sTime);
fprintf(fid,'| %s \r\n', sEvent); % »»ÐÐ
fclose(fid);
I do not think, that the term "appliance" help to understand, which problem you have.
By the way, you can simplify the code to:
...
fprintf(fid,'| %s |\t ',sVersion, sCurrentTime, sTime);
fprintf(fid,'| %s \r\n', sEvent); % »»ÐÐ
...
Walter Roberson
2018년 12월 6일
are we to assume that event entries will look like
dishwasher on
kitchen light off
refrigerator on
refrigerator off
refrigerator on
bathroom light on
refrigerator off
bathroom light off
dishwasher off
and the task is to count how many records there are between an on and the corresponding off, with no interest in the elapsed time??
Mohammad Junayed
2018년 12월 7일
The question is ;
The algorithm recognizes the opening of a single appliance and counts the number of data from opening to closing of a single appliance
Is to see how many lines the data reads when only one appliance is turned on to off and no other appliance is turned on ..
이 질문은 마감되었습니다.
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
아시아 태평양
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)