{"id":5649,"date":"2020-01-01T19:55:08","date_gmt":"2020-01-02T00:55:08","guid":{"rendered":"https:\/\/blogs.mathworks.com\/cleve\/?p=5649"},"modified":"2020-01-10T02:30:48","modified_gmt":"2020-01-10T07:30:48","slug":"mathworks-blue-meets-air-force-academy-blue","status":"publish","type":"post","link":"https:\/\/blogs.mathworks.com\/cleve\/2020\/01\/01\/mathworks-blue-meets-air-force-academy-blue\/","title":{"rendered":"MathWorks Blue Meets Air Force Academy Blue"},"content":{"rendered":"<div class=\"content\"><!--introduction--><p>I  have always been fascinated by the names that are used to describe colors.  There are dozens of web sites with lists of color names. I was surprised to discover that the shade of blue we use in MathWorks logo is almost the same as the one used by the United States Air Force Academy.<\/p><!--\/introduction--><h3>Contents<\/h3><div><ul><li><a href=\"#b9437762-720a-40f9-9643-537b5d566531\">MathWorks logo.<\/a><\/li><li><a href=\"#a4781871-8162-4f92-9bf0-b877abe5a662\">Martin Krzywinski<\/a><\/li><li><a href=\"#42b70206-7102-4d26-9f7f-cba4806428c1\">Dodger Blue<\/a><\/li><li><a href=\"#616a5ba8-e10b-4800-9b6d-95793d2b81a5\">xkcd<\/a><\/li><li><a href=\"#fef92196-2b9e-4339-871b-1b720a591060\">usafa_blue<\/a><\/li><li><a href=\"#51238a83-b1a9-49c3-bdcd-8b15fc262a71\">show_rgb<\/a><\/li><\/ul><\/div><h4>MathWorks logo.<a name=\"b9437762-720a-40f9-9643-537b5d566531\"><\/a><\/h4><p>Here is the \"official\" type font and color for a MathWorks&reg; logo.<\/p><pre class=\"codeinput\">   clear\r\n   M = imread(<span class=\"string\">'MW_logo.jpeg'<\/span>);\r\n   M = imresize(M,1\/6);\r\n   imshow(M)\r\n<\/pre><img decoding=\"async\" vspace=\"5\" hspace=\"5\" src=\"http:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_01.png\" alt=\"\"> <p>Let's retrieve the red, blue and green components of one pixel in the logo.  This is MathWorks blue.<\/p><pre class=\"codeinput\">   mw_blue = double(squeeze(M(25,168,1:3))')\r\n   show_rgb(mw_blue)\r\n<\/pre><pre class=\"codeoutput\">mw_blue =\r\n     1    86   150\r\n<\/pre><img decoding=\"async\" vspace=\"5\" hspace=\"5\" src=\"http:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_02.png\" alt=\"\"> <p>It's a medium blue with a bit of green and hardly any red.<\/p><h4>Martin Krzywinski<a name=\"a4781871-8162-4f92-9bf0-b877abe5a662\"><\/a><\/h4><p><a href=\"http:\/\/mkweb.bcgsc.ca\/bio\/martin-krzywinski-bio.pdf\">Martin Krzywinski<\/a> is a biologist, mathematician and artist at Canada's British Columbia Cancer Agency, Genome Sciences Centre.  As befits his name, he maintains a <a href=\"http:\/\/mkweb.bcgsc.ca\">crazy web site<\/a>, chock full of all kinds of science and art.  In particular, he has collected a list of <a href=\"http:\/\/mkweb.bcgsc.ca\/colornames\">9,284 named colors<\/a> from dozens of sources.  The list includes <a href=\"https:\/\/www.pantone.com\/color-intelligence\/articles\/technical\/pantone-numbering-explained\">940 Pantone Colors<\/a>, a standard in the printing industry, with \"names\" like <a href=\"https:\/\/www.pantone.com\/color-finder\/2945-C\">PMS2945-C.<\/a><\/p><p>I won't display all 9,284 entries in his collection.  Here is a sample of just a few of them from near the middle of the list,<\/p><pre class=\"codeinput\">   load <span class=\"string\">krzy<\/span> <span class=\"string\">krzy<\/span> <span class=\"string\">names<\/span> <span class=\"string\">rgb<\/span>\r\n   k = 5000:5020;\r\n   sample = krzy(k,:)\r\n<\/pre><pre class=\"codeoutput\">sample =\r\n  21&times;4 table\r\n     r      g      b                name            \r\n    ___    ___    ___    ___________________________\r\n    164     66    160    \"ugly_purple\"              \r\n    164     90     82    \"redwood\"                  \r\n    164     97     58    \"footloose\"                \r\n    165      0     85    \"violet_red\"               \r\n    165    101     49    \"mai_tai\"                  \r\n    165    101     49    \"style_pasifika_shore_sand\"\r\n    165    105     79    \"sepia\"                    \r\n    165    107    109    \"PMS4995\"                  \r\n    165     11     94    \"jazzberry_jam\"            \r\n    165    110    117    \"turkish_rose\"             \r\n    165    113    100    \"blast_off_bronze\"         \r\n    165    126     82    \"puce\"                     \r\n    165    139    111    \"mongoose\"                 \r\n    165    149    120    \"triple_sisal\"             \r\n    165    149    145    \"triple_milestone\"         \r\n    165    150    146    \"asteroid\"                 \r\n    165    151    132    \"malta\"                    \r\n    165    153    130    \"routeburn\"                \r\n    165    154    168    \"siesta\"                   \r\n    165    155    145    \"zorba\"                    \r\n    165    156     85    \"gingko\"                   \r\n<\/pre><p>I'm going to compute the $l_1$ vector norm of the differences between all the rgb triples in Krzywinski's list and MathWorks blue. This norm isn't exactly the best way to compute the distance between colors, but it's good enough here.  (Notice the singleton expansion, a 9254-by-3 array minus a 1-by-3 array.)<\/p><pre class=\"codeinput\">e = sum(abs(rgb - mw_blue),2);\r\n<\/pre><p>Let's say that two colors are close to each other if this distance is less than 20.  Here are the nearby colors.<\/p><pre class=\"codeinput\">   f = (e &lt; 20);\r\n   nearby = names(f)\r\n   show_rgb([mw_blue; rgb(f,:)])\r\n<\/pre><pre class=\"codeoutput\">nearby = \r\n  7&times;1 string array\r\n    \"usafa_blue\"\r\n    \"PMS2945\"\r\n    \"endeavour\"\r\n    \"PMS301\"\r\n    \"peacock_blue\"\r\n    \"bahama_blue\"\r\n    \"medium_electric_blue\"\r\n<\/pre><img decoding=\"async\" vspace=\"5\" hspace=\"5\" src=\"http:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_03.png\" alt=\"\"> <p>The closest is <tt>usafa_blue<\/tt>, from the United States Air Force <a href=\"https:\/\/www.usafa.af.mil\/\">Academy<\/a> in Colorado Springs.  I didn't expect this.<\/p><pre class=\"codeinput\">   usafa_blue = rgb(find(f,1),:)\r\n   distance = e(find(f,1))\r\n<\/pre><pre class=\"codeoutput\">usafa_blue =\r\n     0    79   152\r\ndistance =\r\n    10\r\n<\/pre><h4>Dodger Blue<a name=\"42b70206-7102-4d26-9f7f-cba4806428c1\"><\/a><\/h4><p>I actually got started looking for these color matches by using the Krzywinski color lookup web service.<\/p><pre class=\"codeinput\">   query_url = <span class=\"string\">'http:\/\/mkweb.bcgsc.ca\/colornames\/namethatcolor\/?'<\/span>;\r\n   query = [query_url <span class=\"string\">'rgb='<\/span> sprintf(<span class=\"string\">'%d,'<\/span>, mw_blue)];\r\n   web(query)\r\n<\/pre><p>Here are the nearby colors, according to whatever criterion this service uses.<\/p><pre class=\"codeinput\">   type <span class=\"string\">response.txt<\/span>\r\n<\/pre><pre class=\"codeoutput\">\r\ndodger_blue (3.7)\r\ndusk_blue (4.4)\r\nbedazzled_blue (4.9)\r\ncyan_cobalt_blue (5.0)\r\nmedium_electric_blue (5.5)\r\nlapis_lazuli (5.5)\r\nyale_blue (6.3)\r\nazure (6.3)\r\nst_tropaz (6.5)\r\n<\/pre><p>I was intrigued by the appearance of <tt>dodger_blue<\/tt> and <tt>yale_blue<\/tt> on this list.  In case you haven't heard of them, the Dodgers are one of the best U. S. baseball teams not in Boston or New York City and Yale is one of the better U.S. universities not located near Boston or in the San Francisco Bay Area.<\/p><p>There are five <tt>dodger_blue<\/tt> on the list,<\/p><pre class=\"codeinput\">   f = (names == <span class=\"string\">'dodger_blue'<\/span>);\r\n   show_rgb([mw_blue; rgb(f,:)])\r\n<\/pre><img decoding=\"async\" vspace=\"5\" hspace=\"5\" src=\"http:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_04.png\" alt=\"\"> <p>There is only one <tt>yale_blue<\/tt>.<\/p><pre class=\"codeinput\">   f = (names == <span class=\"string\">'yale_blue'<\/span>);\r\n   show_rgb([mw_blue; rgb(f,:)])\r\n<\/pre><img decoding=\"async\" vspace=\"5\" hspace=\"5\" src=\"http:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_05.png\" alt=\"\"> <h4>xkcd<a name=\"616a5ba8-e10b-4800-9b6d-95793d2b81a5\"><\/a><\/h4><p><a href=\"https:\/\/xkcd.com\">xkcd<\/a> is a brilliant web comic strip that Randall Munroe started <b>almost 15 years ago<\/b>.  One of Munroe's more serious projects was the <a href=\"https:\/\/xkcd.com\/1882\">xkcd color model.<\/a> He surveyed  <a href=\"https:\/\/blog.xkcd.com\/2010\/05\/03\/color-survey-results\/\">over 220,000 people<\/a>, asking them to name colors.  This produced these <a href=\"https:\/\/xkcd.com\/color\/rgb\">954 named colors.<\/a><\/p><p>You can  <a href=\"https:\/\/xkcd.com\/color\/rgb.txt\">download the list.<\/a><\/p><pre class=\"codeinput\">   load <span class=\"string\">xkcd<\/span> <span class=\"string\">names<\/span> <span class=\"string\">rgb<\/span>\r\n<\/pre><p>Which colors are close to MathWorks blue?<\/p><pre class=\"codeinput\">   e = sum(abs(rgb - mw_blue),2);\r\n   f = find(e &lt; 72);\r\n   nearby = names(f)\r\n<\/pre><pre class=\"codeoutput\">nearby = \r\n  23&times;1 string array\r\n    \"deep_turquoise\"\r\n    \"deep_aqua\"\r\n    \"dusk_blue\"\r\n    \"deep_sea_blue\"\r\n    \"petrol\"\r\n    \"twilight_blue\"\r\n    \"dark_aquamarine\"\r\n    \"deep_teal\"\r\n    \"peacock_blue\"\r\n    \"light_navy\"\r\n    \"light_navy_blue\"\r\n    \"prussian_blue\"\r\n    \"darkish_blue\"\r\n    \"denim_blue\"\r\n    \"teal_blue\"\r\n    \"ocean\"\r\n    \"bluegreen\"\r\n    \"dark_aqua\"\r\n    \"dark_cyan\"\r\n    \"cobalt\"\r\n    \"dark_turquoise\"\r\n    \"ocean_blue\"\r\n    \"sea_blue\"\r\n<\/pre><p>How close are they?<\/p><pre class=\"codeinput\">   show_rgb([mw_blue; rgb(f,:)])\r\n<\/pre><img decoding=\"async\" vspace=\"5\" hspace=\"5\" src=\"http:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_06.png\" alt=\"\"> <p>Not so close. Actually the xkcd list is already included in the Krzywinski list.<\/p><h4>usafa_blue<a name=\"fef92196-2b9e-4339-871b-1b720a591060\"><\/a><\/h4><p>The closest I found was <a href=\"https:\/\/encycolorpedia.com\/004f98\"><tt>usafa_blue<\/tt><\/a><\/p><pre class=\"codeinput\">   mw_blue\r\n   usafa_blue\r\n   show_rgb([mw_blue; usafa_blue])\r\n<\/pre><pre class=\"codeoutput\">mw_blue =\r\n     1    86   150\r\nusafa_blue =\r\n     0    79   152\r\n<\/pre><img decoding=\"async\" vspace=\"5\" hspace=\"5\" src=\"http:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_07.png\" alt=\"\"> <h4>show_rgb<a name=\"51238a83-b1a9-49c3-bdcd-8b15fc262a71\"><\/a><\/h4><p>If you want to do this yourself.<\/p><pre class=\"codeinput\">   type <span class=\"string\">show_rgb<\/span>\r\n<\/pre><pre class=\"codeoutput\">\r\nfunction show_rgb(rgb)\r\n\r\n   if any(max(rgb) &gt; 1)\r\n       rgb = double(rgb)\/255;\r\n   end\r\n   \r\n   n = size(rgb,1);\r\n   set(gcf,'pos',[500 500 420 100*ceil(n\/8)])\r\n   clf\r\n   axis([0 1 0 1\/8])\r\n   axis equal\r\n   axis off\r\n   noticks\r\n   \r\n   for k = 1:n\r\n       patch([0 1 1 0 0]\/9 + mod(k-1,8)\/8, ...\r\n             [0 0 1 1 0]\/9 - .15*floor((k-1)\/8), ...\r\n             rgb(k,:)) \r\n   end  \r\nend\r\n<\/pre><script language=\"JavaScript\"> <!-- \r\n    function grabCode_299bd5d40fb8491d8d6100b93fc48803() {\r\n        \/\/ Remember the title so we can use it in the new page\r\n        title = document.title;\r\n\r\n        \/\/ Break up these strings so that their presence\r\n        \/\/ in the Javascript doesn't mess up the search for\r\n        \/\/ the MATLAB code.\r\n        t1='299bd5d40fb8491d8d6100b93fc48803 ' + '##### ' + 'SOURCE BEGIN' + ' #####';\r\n        t2='##### ' + 'SOURCE END' + ' #####' + ' 299bd5d40fb8491d8d6100b93fc48803';\r\n    \r\n        b=document.getElementsByTagName('body')[0];\r\n        i1=b.innerHTML.indexOf(t1)+t1.length;\r\n        i2=b.innerHTML.indexOf(t2);\r\n \r\n        code_string = b.innerHTML.substring(i1, i2);\r\n        code_string = code_string.replace(\/REPLACE_WITH_DASH_DASH\/g,'--');\r\n\r\n        \/\/ Use \/x3C\/g instead of the less-than character to avoid errors \r\n        \/\/ in the XML parser.\r\n        \/\/ Use '\\x26#60;' instead of '<' so that the XML parser\r\n        \/\/ doesn't go ahead and substitute the less-than character. \r\n        code_string = code_string.replace(\/\\x3C\/g, '\\x26#60;');\r\n\r\n        copyright = 'Copyright 2020 The MathWorks, Inc.';\r\n\r\n        w = window.open();\r\n        d = w.document;\r\n        d.write('<pre>\\n');\r\n        d.write(code_string);\r\n\r\n        \/\/ Add copyright line at the bottom if specified.\r\n        if (copyright.length > 0) {\r\n            d.writeln('');\r\n            d.writeln('%%');\r\n            if (copyright.length > 0) {\r\n                d.writeln('% _' + copyright + '_');\r\n            }\r\n        }\r\n\r\n        d.write('<\/pre>\\n');\r\n\r\n        d.title = title + ' (MATLAB code)';\r\n        d.close();\r\n    }   \r\n     --> <\/script><p style=\"text-align: right; font-size: xx-small; font-weight:lighter;   font-style: italic; color: gray\"><br><a href=\"javascript:grabCode_299bd5d40fb8491d8d6100b93fc48803()\"><span style=\"font-size: x-small;        font-style: italic;\">Get \r\n      the MATLAB code <noscript>(requires JavaScript)<\/noscript><\/span><\/a><br><br>\r\n      Published with MATLAB&reg; R2019b<br><\/p><\/div><!--\r\n299bd5d40fb8491d8d6100b93fc48803 ##### SOURCE BEGIN #####\r\n%% MathWorks Blue Meets Air Force Academy Blue\r\n% I  have always been fascinated by the names that are used to describe\r\n% colors.  There are dozens of web sites with lists of color names.\r\n% I was surprised to discover that the shade of blue we use in\r\n% MathWorks logo is almost the same as the one used by the\r\n% United States Air Force Academy.\r\n\r\n%% MathWorks logo.\r\n% Here is the \"official\" type font and color for a MathWorks(R) logo.\r\n\r\n   clear\r\n   M = imread('MW_logo.jpeg');\r\n   M = imresize(M,1\/6);\r\n   imshow(M)\r\n   \r\n%%\r\n% Let's retrieve the red, blue and green components of one pixel in the\r\n% logo.  This is MathWorks blue.\r\n\r\n   mw_blue = double(squeeze(M(25,168,1:3))')\r\n   show_rgb(mw_blue)\r\n\r\n%%\r\n% It's a medium blue with a bit of green and hardly any red.\r\n\r\n%% Martin Krzywinski\r\n% <http:\/\/mkweb.bcgsc.ca\/bio\/martin-krzywinski-bio.pdf\r\n% Martin Krzywinski> is a biologist, mathematician and artist at Canada's\r\n% British Columbia Cancer Agency, Genome Sciences Centre.  As\r\n% befits his name, he maintains a <http:\/\/mkweb.bcgsc.ca crazy web site>,\r\n% chock full of all kinds of science and art.  In particular, he has\r\n% collected a list of\r\n% <http:\/\/mkweb.bcgsc.ca\/colornames 9,284 named colors> from dozens of\r\n% sources.  The list includes  \r\n% <https:\/\/www.pantone.com\/color-intelligence\/articles\/technical\/pantone-numbering-explained\r\n% 940 Pantone Colors>, a standard in the printing industry, with \"names\"\r\n% like <https:\/\/www.pantone.com\/color-finder\/2945-C PMS2945-C.>\r\n   \r\n%%\r\n% I won't display all 9,284 entries in his collection.  Here is a sample\r\n% of just a few of them from near the middle of the list,\r\n\r\n   load krzy krzy names rgb\r\n   k = 5000:5020;\r\n   sample = krzy(k,:)\r\n  \r\n%%\r\n% I'm going to compute the $l_1$ vector norm of the differences\r\n% between all the rgb triples in Krzywinski's list and MathWorks blue.\r\n% This norm isn't exactly the best way to compute the distance\r\n% between colors, but it's good enough here.  (Notice the singleton\r\n% expansion, a 9254-by-3 array minus a 1-by-3 array.)\r\n\r\ne = sum(abs(rgb - mw_blue),2);\r\n   \r\n%%\r\n% Let's say that two colors are close to each other if this distance is\r\n% less than 20.  Here are the nearby colors.\r\n\r\n   f = (e < 20);\r\n   nearby = names(f)\r\n   show_rgb([mw_blue; rgb(f,:)])\r\n\r\n%%\r\n% The closest is |usafa_blue|,\r\n% from the United States Air Force <https:\/\/www.usafa.af.mil\/ Academy>\r\n% in Colorado Springs.  I didn't expect this.\r\n\r\n   usafa_blue = rgb(find(f,1),:)\r\n   distance = e(find(f,1))\r\n\r\n%% Dodger Blue\r\n% I actually got started looking for these color matches by using the\r\n% Krzywinski color lookup web service.\r\n%\r\n   query_url = 'http:\/\/mkweb.bcgsc.ca\/colornames\/namethatcolor\/?';\r\n   query = [query_url 'rgb=' sprintf('%d,', mw_blue)];\r\n   web(query)\r\n   \r\n%%\r\n% Here are the nearby colors, according to whatever criterion this\r\n% service uses.\r\n\r\n   type response.txt\r\n\r\n%%\r\n% I was intrigued by the appearance of |dodger_blue| and |yale_blue|\r\n% on this list.  In case you haven't heard of them, the Dodgers are\r\n% one of the best U. S. baseball teams not in Boston or New York City and\r\n% Yale is one of the better U.S. universities not located near Boston or\r\n% in the San Francisco Bay Area.\r\n\r\n%%\r\n% There are five |dodger_blue| on the list,\r\n\r\n   f = (names == 'dodger_blue');\r\n   show_rgb([mw_blue; rgb(f,:)])\r\n   \r\n%%\r\n% There is only one |yale_blue|.\r\n\r\n   f = (names == 'yale_blue');\r\n   show_rgb([mw_blue; rgb(f,:)])\r\n   \r\n%% xkcd\r\n% <https:\/\/xkcd.com xkcd> is a brilliant web comic strip that \r\n% Randall Munroe started *almost 15 years ago*.  One of Munroe's more\r\n% serious projects was the\r\n% <https:\/\/xkcd.com\/1882 xkcd color model.>\r\n% He surveyed  <https:\/\/blog.xkcd.com\/2010\/05\/03\/color-survey-results\/\r\n% over 220,000 people>, asking them to name colors.  This produced these\r\n% <https:\/\/xkcd.com\/color\/rgb 954 named colors.>\r\n%\r\n\r\n%%\r\n% You can  <https:\/\/xkcd.com\/color\/rgb.txt download the list.>\r\n\r\n   load xkcd names rgb\r\n   \r\n%%\r\n% Which colors are close to MathWorks blue?\r\n\r\n   e = sum(abs(rgb - mw_blue),2);\r\n   f = find(e < 72);\r\n   nearby = names(f)\r\n   \r\n%%\r\n% How close are they?\r\n\r\n   show_rgb([mw_blue; rgb(f,:)])\r\n   \r\n%%\r\n% Not so close. Actually the xkcd list is already included in the\r\n% Krzywinski list.\r\n\r\n%% usafa_blue\r\n% The closest I found was\r\n% <https:\/\/encycolorpedia.com\/004f98 |usafa_blue|>\r\n\r\n   mw_blue\r\n   usafa_blue\r\n   show_rgb([mw_blue; usafa_blue])\r\n   \r\n%% show_rgb\r\n% If you want to do this yourself.\r\n\r\n   type show_rgb\r\n      \r\n##### SOURCE END ##### 299bd5d40fb8491d8d6100b93fc48803\r\n-->","protected":false},"excerpt":{"rendered":"<div class=\"overview-image\"><img src=\"https:\/\/blogs.mathworks.com\/cleve\/files\/mw_usafa_blog_06.png\" class=\"img-responsive attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\" decoding=\"async\" loading=\"lazy\" \/><\/div><!--introduction--><p>I  have always been fascinated by the names that are used to describe colors.  There are dozens of web sites with lists of color names. I was surprised to discover that the shade of blue we use in MathWorks logo is almost the same as the one used by the United States Air Force Academy.... <a class=\"read-more\" href=\"https:\/\/blogs.mathworks.com\/cleve\/2020\/01\/01\/mathworks-blue-meets-air-force-academy-blue\/\">read more >><\/a><\/p>","protected":false},"author":78,"featured_media":5665,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[32,5,8],"tags":[],"_links":{"self":[{"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/posts\/5649"}],"collection":[{"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/users\/78"}],"replies":[{"embeddable":true,"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/comments?post=5649"}],"version-history":[{"count":3,"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/posts\/5649\/revisions"}],"predecessor-version":[{"id":5671,"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/posts\/5649\/revisions\/5671"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/media\/5665"}],"wp:attachment":[{"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/media?parent=5649"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/categories?post=5649"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blogs.mathworks.com\/cleve\/wp-json\/wp\/v2\/tags?post=5649"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}