Loren on the Art of MATLAB

June 5th, 2007

MathWorks Aerospace and Defense Conference ‘07

I'm attending the _C_AERO The MathWorks Aerospace and Defense Conference '07 in Manhattan Beach today and wanted to give you a nearly live update.

Contents

Tuesday After Lunch

This afternoon, I gave my talk in front of this audience. Actually, the pictures were taken before I started so some people hadn't yet made it back from lunch. Others were attending a master class.

Next Talk

The next talk was by Eddie Mayhew, titled "Target Tracking Visualization Tool." You can see him here.

Before the Coffee Break

We finished the first section of the afternoon with a talk by Houmann from The Mathworks. His talk was about "Moving MATLAB Algorithms into Complete Designs with Fixed Point Simulation and Code Generation."

Conference Comments and Updates

I am hoping that some conference attendees will add updates here.


Get the MATLAB code

Published with MATLAB® 7.4

3 Responses to “MathWorks Aerospace and Defense Conference ‘07”

  1. Seth Popinchalk replied on :

    I really enjoyed your talk at MADC 2007 before lunch. Your special presentation right now is very cool. It’s great to see your workflow!

  2. shakeham replied on :

    Loren you guys seemed to have so much fun. why not show some of your pictures?

  3. Paul Barnard replied on :

    Great talk, Loren. It was very cool to see you update your blog live and in person.

Leave a Reply

Wrap code fragments inside <pre> tags, like this:

<pre class="code">
a = magic(3);
sum(a)
</pre>

If you have a "<" character in your code, either follow it with a space or replace it with "&lt;" (including the semicolon).


Loren Shure works on design of the MATLAB language at The MathWorks. She writes here about once a week on MATLAB programming and related topics.

  • Jun: I totally can not believe it, Loren. You are really helpful. Thank you so much, MATLAB master!
  • Loren: Wow folks- Always lots of interest when there’s a quickie to try out! I will only make 2 general...
  • Loren: Jun- ismember is your friend here: >> [aa,ind] = ismember(Array2,Arra y1) aa = 1 1 1 1 1 1 1 ind = 1 2 1 4 4 3...
  • Dan: I like the first way better than the second way. Combining the arrays into one and running any is nice, although...
  • James Myatt: How about I = (a == 0 | b == 0); a(I) = []; b(I) = [];
  • Tunc: Hello Loren, love your blog because of such inspiring and challenging comments to such ’small’...
  • Pekka Kumpulainen: Here is my tradeoff. I usually want to keep the original variables as they are most probably...
  • Iain: Followup: Of course, to allow NaNs (counting them as non-zero): mask = (a~=0) & (b~=0); The mask says “a...
  • Matt Fig: I would usually go with something like this: y = a&b; x = a(y); y = b(y); But I was surprised to find...
  • kk: c=all([a;b]) a(c) a(b)

These postings are the author's and don't necessarily represent the opinions of The MathWorks.