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!