calling Matlab graphics routines through dll028 (9/27/2004 6:25:22 PM) comp.soft-sys.matlab Is it possible to call Matlab graphics routines (e.g. a figure) from an application outside Matlab (e.g. writen in VC++) through a dll file? I managed to call a dll from my VC++ app. The matter is, it doesn't ... Agis
Compiler 3.0, dll graphics027 (9/22/2004 4:43:00 PM) comp.soft-sys.matlab I wrote the following m-file function: function chisq = chisqstat(X) % Chi-square statistic of a contigency table X total = sum(sum(X)); % Grand total of counts coltot = sum(X,1); % Marginal totals of probabil... Angelos
matlab-delphi communication through cshared dll143 (9/22/2004 11:47:39 AM) comp.soft-sys.matlab Matlab 6.5 R13 (lcc compiler) Delphi 7 I wrote some.m, a function that gets a real matrix and returns a real number. My purpose was to call this function (through cshared DLL) from Delphi and return the double... Angelos
Connecting Delphi and Matlab via COM575 (7/20/2004 6:43:53 PM) comp.soft-sys.matlab Matlab 7,R14 Delphi 7 All I want is to convert an m file into a dll so as to call it from Delphi via COM. 1. Is it the right aproach *or maybe mcc is the right choice*? 2. If it is, I tried the COM Tool but ... Angelos
Building a COM object236 (6/25/2004 3:43:23 PM) comp.soft-sys.matlab Matlab 6.5 R13 user Win XP -------------------- Trying to execute the magic square example of Matlab COM Builder (comtool), I came across the following error just when i pressed the 'build' button. MBUILD.BAT:... Angelos
Edit & Slider933 (4/2/2004 2:02:41 PM) comp.soft-sys.matlab Let's suppose i make a simple gui using GUIDE that consists of a slider and an edit box. I am trying to get the edit box to change whenever you move the slider. I know it must be simple but unfortunately i have... Angelos
Combinations #2133 (2/12/2004 1:31:42 PM) comp.soft-sys.matlab Hi all, I've got a mathematical problem here and i'll appreciate your help. --> I have e.g. the following vectors R = [1 3] and C = [2 4] and i want to produce a matrix with all the possible combinations bet... Angelos
Placing point labels manually029 (2/9/2004 9:40:16 AM) comp.soft-sys.matlab Hi, i have a strange situation to face. I've created a figure with a scatterplot, so that the points on it and their corresponding text labels appear manually when the user presses a key. (Sth like animation).... Angelos
Quering a text object434 (2/2/2004 3:48:22 PM) comp.soft-sys.matlab I create a 2d scatterplot with some points and their corresponding labels. When the user clicks on a point's label i want to appear some information for the point e.g. its coordinates. Do i have to use the han... Angelos
'String' property of texts146 (1/20/2004 4:47:31 PM) comp.soft-sys.matlab Hi, i've created 5 check boxes in a figure. Suppose that each of them is 'connected' with a string matrix. When the user checks e.g. 3 of them, i want these 3 specific matrices to be shown as output to the use... Angelos
amarkos's replies:
Items(7) /1
Edit & Slider933 (4/2/2004 2:02:41 PM) comp.soft-sys.matlab Let's suppose i make a simple gui using GUIDE that consists of a slider and an edit box. I am trying to get the edit box to change whenever you move the slider. I know it must be simple but unfortunately i have... amarkos(23)
transfer data between callbacks (GUI)399 (2/6/2004 3:40:22 AM) comp.soft-sys.matlab Hi, if i add the following function into a push-button callback: [x, pathname] = uigetfile('*.*', 'String'); to choose a file name. Is there anyone who knows how to display the pathname+filename in a edit tex... herry_2000(3)
Quering a text object434 (2/2/2004 3:48:22 PM) comp.soft-sys.matlab I create a 2d scatterplot with some points and their corresponding labels. When the user clicks on a point's label i want to appear some information for the point e.g. its coordinates. Do i have to use the han... amarkos(23)
My gui application need extern data125 (1/26/2004 3:14:01 AM) comp.soft-sys.matlab I developed a GUI application.It's job is that receive data from extern and display them.Now I have developed the mainframe of the application except data receiving.Would anybody like to help me? ... znsword(1)
Edit text431 (1/19/2004 10:00:47 AM) comp.soft-sys.matlab How can I get a carriage return functionality in a text edit, when using the set command: set(hText,'string','...... carriage return .....'); Thanks, ... sagiv(33)
Figure Window Problem435 (1/14/2004 5:56:44 PM) comp.soft-sys.matlab When I plot a figure, start a blank figure, or open an existing saved figure; I have lost my editing menu bar. No selection arrow, no text entry button, no line or arrow button. I've also lost my edit, view, in... notachance1(5)
Plot values on a single axis235 (12/19/2003 7:10:42 PM) comp.soft-sys.matlab Hi all, First, i create one 2-dim table, X.Then,i want to make a 2d scatter plot. X coordinates are X(:,1) (1st col of X) and Y coordinates are X(:,2) (2nd col of X). So i type among else: ..... plot(x(:,1),x(... amarkos(23)