|
First
|
Prev |
Next
|
Last
Pages: 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
How to run an external application on a different computer from MATLAB "Hema ": <SNIP still the same sermon... ...it seems like other than the method you mentioned there is no other way to call a program on a different machine from MATLAB. That's a little surprising to me... did you look at what i told you earlier... yes, then % go here http://technet.microsoft.co... 19 Jun 2008 11:38
Convert Excel Array to Matlab Matrix Dear all, I am trying to use VBA to call Matlab. My problem is that I didn't get success to convert VBA array to a Matlab Matrix. Here is my codes: (Assuming fwd and spot are two arrays in VBA) Call Matlab.PutWorkspaceData("fwd", "base", fwd) Call Matlab.PutWorkspaceData("spot", "base", fwd) Call Ma... 19 Jun 2008 10:36
help with fprintf us: Thanks for the response. I checked and this way definitely works, but a problem I'm having is that I'm printing anywhere from 10 to 100 million of these numbers tab delimited in a word file... i was kinda hoping for an easier way to do it. I mean i could always build the number as a string then just cut out ... 19 Jun 2008 01:18
using non-standard serial port baud rate (interfacing to SICK LIDAR) I want to communicate with a RS-422 device (SICK LIDAR) that uses a non-standard baud rate (500Kbd). My PC has a Quatech DSC-3200/300 that supports this rate using a UART 8X clock multiplier. If I do a: s = serial('COM3'); set (s,'BaudRate',62500,'Databits',8,'Parity','none','FlowContr ol','Hardware'); ... 7 May 2008 15:53
Graph Problem - Finding all sets of nodes forming complete sub-graphs Hi there, I want to find all the sets of nodes in a graph which have edges between all the nodes in the set....in other words I want to find all the complete sub-graphs in an un-directional graph: e.g. If I have this upper-triangular graph (un-directed graph) where each edge is denoted by a 1 (0 is no edge) ... 7 May 2008 15:04
problem on compiling exe containing dll file I am trying to compile a project containing a dll file. It can generate without problem. While, when i am trying to run the exe file created. It through an error saying one function related my dll can not be found. Any suggestion? Thanks, Hailiang ... 7 May 2008 15:04
retain certain pixels in image "William Thielicke" <w.thielicke.doesntLikeSpam.(a)rug.nl> wrote in message <fvsnv0$k78$1(a)fred.mathworks.com>... Hey! I am also new, but can't you use A=imread('...') and then B=A(1:5 1) Oder something like that (in a correct syntax.... ;-D) Cheers, William ---------------------------------------... 7 May 2008 14:14
running a Windows program from MATLAB I need to run a Windows .exe code for multiple times from inside of my MATLAB script. I do it using !program.exe>log line in the script. Every time the line executes a new window pops up and becomes active, taking mouse and keyboard controls. It makes impossible to do other work on this machine. Is there a... 7 May 2008 14:14
Spline through non uniformly spaced points I want to do something like this: a=axes; set(a,'xlim',[-2 2]); set(a,'ylim',[-2 2]); [x y] = ginput; %click a bunch of points %draw a spline through the points xx=-2:.01:2; yy=spline(x, y, xx); the problem seems to be that the points I have clicked are not uniformly spaced (clearly) so i get the foll... 7 May 2008 15:04 |