답변 있음
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년 초과 전 | 1

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

14년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 0

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

14년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 0

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

14년 초과 전 | 0

답변 있음
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년 초과 전 | 3

답변 있음
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년 초과 전 | 1

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
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년 초과 전 | 1

답변 있음
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;

거의 15년 전 | 1

| 수락됨

답변 있음
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...

거의 15년 전 | 1

| 수락됨

답변 있음
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...

거의 15년 전 | 0

| 수락됨

답변 있음
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...

거의 15년 전 | 3

| 수락됨

답변 있음
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...

거의 15년 전 | 4

답변 있음
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...

거의 15년 전 | 2

| 수락됨

더 보기