I'm trying to graph data from an html file and I'm unsure how to load and graph it.
조회 수: 2 (최근 30일)
이전 댓글 표시
im trying to graph time on the x axis and rise rate on the y
meaning (current alt-start alt)/(current time-start time)
댓글 수: 0
답변 (1개)
Voss
2023년 10월 16일
url = "https://coyote.eece.maine.edu/ece101/hw/umhab-137-iridium.html";
T = readtable(url);
head(T)
tail(T)
alt = str2double(T.("Alt-m"));
time = T.("Time-UTC");
rise_rate = (alt-alt(end))./seconds(time-time(end)); % m/s
plot(time,rise_rate)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!