Answered
compatibility of Windows 7 -64 bit and Matlab 7.1
Hi, MATLAB 7.1 is R14SP3 which wasn't supported on WIN7: <http://www.mathworks.com/support/sysreq/release14sp3/index.html> It...

14 years ago | 1

Answered
Reformatting Dates
Hi, you can use regexprep for that: >> a = '12/01/2011' a = 12/01/2011 >> regexprep(a,'/','') ...

14 years ago | 0

Answered
To extract the random integer into a file
Hi, when you want to use the data back in MATLAB again, the best would be a mat file, since it pretty easy: data = randi...

14 years ago | 0

Answered
Open Excell file with dialog box
Hi, I think the winopen command helps here (as long EXCEL is associated with the file you like to open in EXCEL) <http://www.m...

14 years ago | 1

| accepted

Answered
Windows® enviroment window control from matlab (activate window and enter commands)
Hi, I think MATLAB don't has anything which can do this. One way could be writing a mex file which uses the WINDOWS API to get ...

14 years ago | 0

Answered
how to use matlabpool and multiple GPUs simultaneously?
Hi, normally one uses the gpuDevice command to active/use a specific GPU device. I am not sure if this will work but I would tr...

14 years ago | 0

Answered
Errors launching GUI built in GUIDE
Hi, I can remember this error somehow. I think it was due some uicontrols and their properties in R2009a. Try to make sure that...

14 years ago | 1

Answered
why doesn't the 'getframe' work?
Hi, seems like an openGL issue. Changing the renderer to painters or zbuffer or opengl software works: c_H=figure; H_axes=...

14 years ago | 0

| accepted

Answered
GPU computing in spmd
Hi, the doc says the following: Access from a MATLAB worker running on a Microsoft Windows operating system with a job...

14 years ago | 1

Answered
Is possible catia to simmechanics link..?
Hi, 1.) I doubt you can this. Like you found out, Simmechanics Link support Pro/E and solidworks only 2.) There are conver...

14 years ago | 0

| accepted

Answered
Check memory in script
Hi, see here: <http://www.mathworks.com/support/tech-notes/1100/1107.html> So you can use feature memstats or u...

14 years ago | 0

| accepted

Answered
Unable to start mex32 application
Hi, sounds like a dependency of that mex file is missing. Make sure that all DLL's which are needed from that mex file are av...

14 years ago | 1

Answered
Matlab Coder 2.0/Inputing Data Types
Hi, when using a MATLAB Coder project you can specify the input data types: <http://www.mathworks.com/help/toolbox/coder/ug/bs...

14 years ago | 0

Answered
Matlab Classes in shared-dll's
Hi, no you can't. You cannot export any MATLAB classes to C/C++.

14 years ago | 0

| accepted

Answered
MEX Function - Using mexCallMATLAB function in conjunction with "PolyFit"
Hi, not 100% sure but polyfit return always at least one variable which you don't capture. Maybe this causes the crash?

14 years ago | 0

Answered
Matlab figure to jar file
Hi, where should the java application run at the end? Are you designing a web application or a classical java application? ...

14 years ago | 0

| accepted

Answered
Compile function handles to mex-files
Hi, ODE sovlers can't be translated to C/C++. All functions which are supported for code gen can be found here: <http://ww...

14 years ago | 1

| accepted

Answered
Trying to get matlab mex file to work
Hi, seems like you are trying to compile the example file in the directory where it comes with MATLAB. Under Windows 7 or Vis...

14 years ago | 1

| accepted

Answered
write a function about ' v(t)=10^9+10^8*(1-exp(-t./100))-1.5*10^7*t '
Hi, risky (violates some basic rules of numerical mathematics) but should work in the most cases func = @(t) 10^9+10^8...

14 years ago | 0

Answered
1.0010 DOES NOT EQUAL 1.0010
Also good to read is: <http://www.mathworks.com/support/tech-notes/1100/1108.html>

14 years ago | 0

Answered
mex calls in other mex functions - is it possible?
Hi, when working on Windows you can use the Windows API to do run time dynamic linking on the mex file since a mex file is a dl...

14 years ago | 3

Answered
backward,forward, and central Difference
Hi, lets say you like to get Z'(t_0) with the forward difference. You do the following Z'(t_0) = ( Z(t_0 + h) - Z(t_0) )...

14 years ago | 1

Answered
How to use multiple cores
Hi, try to use the & so that ML don't wait, saying: eval(sprintf('!%s "%s" &','"[a bat file]"',[a matlab generated ini fil...

14 years ago | 2

| accepted

Answered
matlab 2011b 64 bit compiler mess
Hi, the loadlibrary command can parse C Syntax header files only. It seems that your DLL and header file use the eh.h which i...

14 years ago | 1

Answered
Add 3 to the values of x that are even
Hi, x(find(mod(x,2) == 0)) = x(find(mod(x,2) == 0)) + 3 or ind = find(mod(x,2) == 0); x(ind) = x(ind) + 3;

14 years ago | 1

| accepted

Answered
Install* MCR without Administrator rights
Hi, there is no supported way to get it working without admin privileges. The steps which are needed to take are explained in...

14 years ago | 1

| accepted

Answered
Shared MCR instance for mixed Matlab deployments (.exe, .jar)
Hi, There is no "golden and simple way". You have to implement this process communication by your own. Unfortunately MATLAB h...

14 years ago | 0

| accepted

Answered
link Catia to Matlab
Hi, I attached the file to that post. But please read the full article first. * I used Catia v5 R19 and this version c...

14 years ago | 3

| accepted

Answered
link Catia to Matlab
Hi, The communication with CATIA is tricky. The automation interface is not open so you won’t be able to see it. Even from Vi...

14 years ago | 4

Answered
How to get data from contour
EDIT: Code now handles different regions correctly. Hi, you can use the contour matrix together with inpolygon to get point in...

14 years ago | 2

| accepted

Load more