Question
Write a MATLAB program that prints the catalog numbers and names of all the weather satellites. Each satellite should take up one line, with the
Write a MATLAB program that prints the catalog numbers and names of all the weather satellites. Each satellite should take up one line, with the catalog number first, a space or tab, followed by the name. https://celestrak.org/NORAD/elements/gp.php?GROUP=weather&FORMAT=tle
example
visual_sat_url="https://celestrak.org/NORAD/elements/gp.php?GROUP=weather&FORMAT=tle" %"https://celestrak.org/Norad/elements/gp.php?Group=visual&FORMAT=tle" line_list=string(splitlines(webread(visual_sat_url)));
name_line_num=1; name=line_list(name_line_num);
while strlength(name)>0 %tle_1_line_num=name_line_sum+1; % tle_1= line_list(tle_1_line_num); tle_1=line_list(name_line_num+1); fprintf("%s ",name);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started