Respondida
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...

más de 14 años hace | 1

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

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 1

| aceptada

Respondida
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 ...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 1

Respondida
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=...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 1

Respondida
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...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 1

Respondida
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...

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

Respondida
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?

más de 14 años hace | 0

Respondida
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? ...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 1

| aceptada

Respondida
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...

más de 14 años hace | 1

| aceptada

Respondida
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...

más de 14 años hace | 0

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

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 3

Respondida
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) )...

más de 14 años hace | 1

Respondida
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...

más de 14 años hace | 2

| aceptada

Respondida
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...

más de 14 años hace | 1

Respondida
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;

más de 14 años hace | 1

| aceptada

Respondida
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...

más de 14 años hace | 1

| aceptada

Respondida
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...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 3

| aceptada

Respondida
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...

más de 14 años hace | 4

Respondida
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...

más de 14 años hace | 2

| aceptada

Cargar más