Loren on the Art of MATLAB

February 11th, 2009

More MathWorks Bling for Grabs

Recently I posted about some "hidden" MathWorks swag in the LA area. Congratulations to Tony who posted some information on his find. He photographed the location as well as some video.

Today you might find another led/laser flashlight in the Miami area. A hint for you: Back corner, down low, hidden like a pearl. A location with a great view. Take a moment to "soak it in."

Please post here if you are the one to find the flashlight. Please include links to pictures or videos if you take any! Good luck and have fun.


Get the MATLAB code

Published with MATLAB® 7.7

5 Responses to “More MathWorks Bling for Grabs”

  1. Rob S. replied on :

    Hey Loren,

    I went and found the “bling” yesterday afternoon. It was good fun, and I posted some pictures and a write-up about it here http://blinkdagger.com/uncategorized/geocaching-with-loren

    Thanks for a nice little adventure!

    Rob

  2. Loren replied on :

    Rob-

    Thanks for the very entertaining post. I’m glad you enjoyed Sam’s buried treasure and are paying it forward!

    –Loren

  3. Rob S. replied on :

    Hey Loren,

    The goods have been re-cached for the next person to find. You can get the location details and hint here:

    http://blinkdagger.com/matlab/matlab-geocache-another-chance-to-snag-some-bling

    Best,
    Rob

  4. Loren replied on :

    Thanks, Rob! Please post back here is well if you find the stash.

    –Loren

  5. Zane M. replied on :

    Rob/Loren,

    I’ve snagged the recent cache in Colorado and posted the adventure here:

    http://blinkdagger.com/matlab/matlab-geocache-another-chance-to-snag-some-bling#comments

    I will relocate it on my next trip out of state. Is the secret code used for anything? A log of the device’s journey maybe? Let me know if there’s anything I need to do with it.

    -Zane

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.