Loren on the Art of MATLAB

June 25th, 2007

MATLAB User Group in Boston

I know there are a large number of experienced MATLAB users who read this blog. If you happen to live in the Boston area and are interested in joining some like-minded MATLAB users to meet with the MATLAB Language Development Team, please fill out this survey.

Thanks. I look forward to meeting several of you later this summer.


Get the MATLAB code

Published with MATLAB® 7.4

4 Responses to “MATLAB User Group in Boston”

  1. Nurjaya replied on :

    I am studying for my MPhil at Abertay University in Dundee, I need to use ARMA and Box Jenkins models for my research. My University does not have the MATLAB System Identification Toolbox is there a free version or a tutorial or an M-File that I can get hold of urgently

  2. Loren replied on :

    One place you can look for materials is on the File Exchange on MATLAB Central :

    http://www.mathworks.com/matlabcentral/fileexchange

  3. Latha Dinesh replied on :

    Hello Loren:
    I have recently installed MATLAB7.4.0 (R2007a) in my laptop. However, at the startup the MATLAB screen opens up with the central part as blank white screen, The Menu is listed at the top, and at the bottom left hand corner, next to the start icon (it is greyed out, inactive), MATLAB says “Initializing…”. This screen remains so for ever and does not complete the initialization process…. what could be the problem and what is the solution to this problem… I need to be able to use MATLAB…
    Your help is much appreciated. Thank you and have a wonderful New Year ahead…

  4. Loren replied on :

    Latha-

    Please check out the support area of The MathWorks web site. It has lots of information on issues such as this one.

    –Loren

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.