Activity Classification Demo
https://blogs.mathworks.com/deep-learning/2020/01/30/activity-classification-demo/
https://blogs.mathworks.com/deep-learning/2020/01/30/activity-classification-demo/
Artificial Intelligence
Activity Classification Demo
Every January, our company hosts an annual “kickoff”: an opportunity for sales, marketing and folks in customer facing roles to meet in Boston and learn about all the new and exciting features coming in 2020 for their relevant product areas. Being on the…
Repeated Indexing in MATLAB
https://blogs.mathworks.com/loren/2020/01/31/repeated-indexing-in-matlab/
https://blogs.mathworks.com/loren/2020/01/31/repeated-indexing-in-matlab/
Loren on the Art of MATLAB
Repeated Indexing in MATLAB
Indexing is a popular topic I write about from time to time. Today I want to focus on what happens when there are duplicate indices.ContentsAccessing Array Elements with Repeated IndicesReplicated Elements for Assignment to OutputHow to Achieve Accumulation…
#FileExchange File Exchange Pick of the Week: Spider Plot III – Custom Charts (Authoring)
https://ift.tt/2tX17tk
https://ift.tt/2tX17tk
File Exchange Pick of the Week
Spider Plot III – Custom Charts (Authoring)
Sean's pick this week is spider_plot by Moses.
Last week, we looked at the custom chart I created. This week, we'll look at authoring it.
Contents
Authoring the Custom Chart
Full Custom Chart
Comments
Authoring the Custom Chart
Now…
Last week, we looked at the custom chart I created. This week, we'll look at authoring it.
Contents
Authoring the Custom Chart
Full Custom Chart
Comments
Authoring the Custom Chart
Now…
Roundoff Patterns from Triple Kronecker Products
https://blogs.mathworks.com/cleve/2020/02/14/roundoff-patterns-from-triple-kronecker-products/
https://blogs.mathworks.com/cleve/2020/02/14/roundoff-patterns-from-triple-kronecker-products/
Cleve’s Corner: Cleve Moler on Mathematics and Computing
Roundoff Patterns from Triple Kronecker Products
While I was working on my posts about Pejorative Manifolds, I was pleased to discover the intriguing patterns created by the roundoff error in the computed eigenvalues of triple Kronecker products. ContentsKronecker ProductExampleEigenvalues with high mu…
Head Over Heels in Love
https://blogs.mathworks.com/community/2020/02/14/head-over-heels-in-love/
https://blogs.mathworks.com/community/2020/02/14/head-over-heels-in-love/
MATLAB Community
Head Over Heels in Love
This is what happens when two logarithmic spirals love each other very much.
% Vary k from 1.5 to 3.5
k = 1.5;
t = linspace(0,k*pi,200);
r = exp(t);
x = r.*cos(t);
y = r.*sin(t);
plot(x,y,-x,y,'LineWidth',2,'Color',[1 0 0])
axis equal
set(gcf…
% Vary k from 1.5 to 3.5
k = 1.5;
t = linspace(0,k*pi,200);
r = exp(t);
x = r.*cos(t);
y = r.*sin(t);
plot(x,y,-x,y,'LineWidth',2,'Color',[1 0 0])
axis equal
set(gcf…