Réponse apportée
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...

plus de 14 ans il y a | 1

Réponse apportée
Reformatting Dates
Hi, you can use regexprep for that: >> a = '12/01/2011' a = 12/01/2011 >> regexprep(a,'/','') ...

plus de 14 ans il y a | 0

Réponse apportée
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...

plus de 14 ans il y a | 0

Réponse apportée
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...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
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 ...

plus de 14 ans il y a | 0

Réponse apportée
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...

plus de 14 ans il y a | 0

Réponse apportée
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...

plus de 14 ans il y a | 1

Réponse apportée
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=...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 1

Réponse apportée
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...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 1

Réponse apportée
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...

plus de 14 ans il y a | 0

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

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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?

plus de 14 ans il y a | 0

Réponse apportée
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? ...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

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

plus de 14 ans il y a | 0

Réponse apportée
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...

plus de 14 ans il y a | 3

Réponse apportée
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) )...

plus de 14 ans il y a | 1

Réponse apportée
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...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 1

Réponse apportée
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;

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 3

| A accepté

Réponse apportée
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...

presque 15 ans il y a | 4

Réponse apportée
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...

presque 15 ans il y a | 2

| A accepté

Charger plus