Loren on the Art of MATLAB

May 18th, 2007

More Places to Meet The MathWorks

Here's a brief glimpse into some of the upcoming events where you can meet some of us (including me) from The MathWorks. I hope to meet many folks in the upcoming few weeks.

Contents

2007 MATLAB World Tour - Australia and Taiwan

Come meet us during our visits to cities in Asia and the Pacific region for the 2007 MATLAB World Tour.

Korea

We will also be attending the MATLAB and Simulink Conference 2007 in Seoul, Korea later this month.

Manhattan Beach, California

On my way home from Asia and Australia, I will be join other colleagues to attend The MathWorks Aerospace and Defense Conference '07.

See You There!

I hope to meet many of you at these events. I plan to take some pictures and post some highlights, as I did from the trips I just completed in Europe.


Get the MATLAB code

Published with MATLAB® 7.4

2 Responses to “More Places to Meet The MathWorks”

  1. Philipp replied on :

    Hi Loren,

    Last week I attended the event in Israel in which Sam was showing, among other things, an IP demo for color matching using Cell-Mode.

    I was wondering whether it is possible to obtain those files?

    Thanks,
    -S.

  2. shantan replied on :

    hello loren

    i have a small problem.
    i am not able to get the value of the arrays that i have used in a certain function to continue to be the same in the next ones… please help me in this regard

    shantan

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.