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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 3

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 2

| akzeptiert

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 3

| akzeptiert

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

mehr als 14 Jahre vor | 4

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

mehr als 14 Jahre vor | 2

| akzeptiert

Mehr laden