Skip to main content

Responsive MATLAB GUI without calling drawnow() directly


Facts about MATLAB:



  1. MATLAB UI is Java Swing.

  2. MATLAB has excellent interoperability with Java, it is possible to initialize Java objects and call their methods directly from MATLAB code, it is even possible to pass in MATLAB defined listeners to Java!



My problem:



MATLAB does not offer background threads, so to make MATLAB UI responsive we have to call function drawnow which flushes Swing EDT queue, see also here and here . This is a known fact, so far so good.



But now I have a customer whose code which performs the computation is a MATLAB p-file (encrypted) so I have no access to the code to put drawnow there.



Unsuccessful attempt:



I tried spinning up a timer to do the job of calling drawnow but it does not seem to work - timer itself needs a precedent drawnow to fire its callbacks.



EDIT: At the end I implemented GUI with .NET/WPF running on another thread, so it remains always responsive and looks much better then original MATLAB.


Source: Tips4allCCNA FINAL EXAM

Comments

  1. I don't know whether this can be done properly. I've never found a way of getting the effect of drawnow in the middle of a mex file, and I would guess this situation is similar. But here is an incredibly messy hack anyway :D. If you have a p-file, you can run:

    profile on;
    pfile();
    profile viewer;


    and get an idea of what functions pfile() is calling. If the code is calling any built-in functions (e.g. disp) or any function whose source-code you have access to, you can create your own version of that file further up the path, which will be called by the p-file, e.g.

    function disp(X)
    if (toc > 5)
    drawnow;
    tic;
    end
    builtin('disp', X);


    This will call drawnow at most once every 5 seconds, though it won't be much use unless disp were called regularly. If you can't find a builtin to override, you could use any other function and just insert the drawnow part at the top, like:

    function primes(N)
    if (toc > 5)
    drawnow;
    tic;
    end
    The rest of the original primes.m here.

    ReplyDelete
  2. Just an idea. You could build a jar file from the p-file using Matlab builder for java.
    From within Java you could do the calculation now in a separate thread.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.