已回答
mex access denied error 206
Hi, maybe try to run: dbstop if caught error before running mex -setup. In that way you will stop in the line which r...

11 years 前 | 1

已回答
How to fix NET C# System.TypeInitializationException using a DLL built by Matlab on 64bit Windows 8?
Hi, sounds like a bittedness issues. Is your VS 2012 Project configured as x64 project? If not, please do so and recompile.

11 years 前 | 0

已回答
ButtonDownFcn on ActXControl video element
Hi, you have to use registerevent: %http://www.mathworks.com/help/matlab/matlab_external/using-events.html#f90131 ...

11 years 前 | 0

| 已接受

已回答
i am having MWArray error
Hi, the error message tells the whole story. Adjust the processor archticture of your project. For now it's MSIL and adjustin...

11 years 前 | 0

| 已接受

已回答
Using MATLAB desktop application with MPS
Hi, yes that is possible. You can directly call the MPS from MATLAB however that is a bit tricky. The easiest way would be cr...

11 years 前 | 0

已回答
MATLAB Builder JA question
Hi, yes. The <http://www.mathworks.com/products/javabuilder/ product page> states: "MATLAB Builder™ JA enables you to crea...

11 years 前 | 0

已回答
Making a 3 Variable Function Into a 1 Variable Function
Hi, have a look at the <http://www.mathworks.com/help/optim/ug/passing-extra-parameters.html#brhkghv-9 documentation>. So bas...

11 years 前 | 0

| 已接受

已回答
Set excel cell dimension.
Hi, sure. Here you go: ex = actxserver('excel.application'); ex.Workbooks.Add ex.Visible = 1; ex.Columns.Item('...

11 years 前 | 3

| 已接受

已回答
Changing the Default Copy of Perl Installed with MATLAB
Hi, see <http://www.mathworks.com/matlabcentral/answers/93875-how-can-i-change-the-version-of-perl-that-matlab-uses-on-a-wind...

11 years 前 | 0

| 已接受

已回答
Getting value of a COM Date object in MATLAB
Hi, since you are on Windows you can use .NET to get the current System setting: settings = System.Globalization.DateTim...

11 years 前 | 0

| 已接受

已回答
What should I do if I want to rotate a line?
Hi, In the case its rotating around the origin see <http://en.wikipedia.org/wiki/Rotation_matrix here>. f = @(x) 2*x; ...

11 years 前 | 1

| 已接受

已回答
where to find the version 8.1 of MCR?
Hi, have a look <http://www.mathworks.com/products/compiler/mcr/index.html here>. You need the one from R2013a.

11 years 前 | 1

| 已接受

已回答
Error "Access violation executing location 0x00000000" when using mwArray in Visual-C++
Hi, you don't need to allocate memory for the output. MATLAB will do this for you: mwArray out; ImgProc(1,out,mwA...

11 years 前 | 0

已回答
How to escape the url encoding in URLWRITE
Hi, you can't. Look at the <http://docs.oracle.com/javase/6/docs/api/java/net/URLEncoder.html rules> which are applied: "A...

11 years 前 | 1

| 已接受

已回答
Fitting data with a prescribed function
Hi, have you verfied the other results you are getting? What kind of LOG are you using in Python or Mathematica? In MATLAB LO...

11 years 前 | 0

| 已接受

已回答
Standalone application from Simulink
Hi, how this can be done is explained <http://www.mathworks.de/support/solutions/en/data/1-KPFVVI/index.html here>.

11 years 前 | 0

已回答
Taking images in real time
Hi, I guess you are looking for the <http://www.mathworks.de/products/imaq/ Image Acquisition Toolbox>. If you work MATLAB ba...

11 years 前 | 0

已回答
Repetitive Coding for EditText in Matlab GUI
Hi, yes. For example: >> handles.edit1 = 1; >> handles.edit2 = 2; >> for i=1:2 handles.(['edit',num2str(i)]...

11 years 前 | 2

| 已接受

已回答
Fix problem when mex .cpp file
Hi, this is Microsoft Bug see <http://connect.microsoft.com/VisualStudio/feedback/details/660584/ here>. Since I am such a...

11 years 前 | 20

| 已接受

已回答
why is a blank ignored in strcat
Hi, the doc states: "For character array inputs, strcat removes trailing ASCII white-space characters: space, tab, vertica...

11 years 前 | 0

已回答
Export Data to Ms Access - HELP!!
Hi, yes DATE is a reserved keyword. For a full list see <http://support.microsoft.com/kb/286335/en-us here>. You can stil use...

11 years 前 | 0

| 已接受

已回答
Ja Builder with java 1.7
Hi, please apply the following <http://www.mathworks.com/support/bugreports/948391 patch> and try again.

11 years 前 | 0

| 已接受

已回答
the function 'solve' doesn't give all the solutions.
Hi, seems like you are interested in real solutions only. So use: >> solve(1-0.99-(u+1)*exp(-u),'Real',true) ans...

11 years 前 | 1

| 已接受

已回答
Changing font style and size in Matlab Report Generator
Hi, see <http://www.mathworks.com/help/rptgen/ug/examples_brc6_55.html#brc7aqt-1 here> or use web([docroot '/rptgen/ug...

11 years 前 | 0

| 已接受

已回答
Which version of Perl is built into MATLAB? perl.m
Hi, simply call it and find it out. On Windows: >> system(['"',fullfile(matlabroot, 'sys\perl\win32\bin\perl.exe'),'" -v...

11 years 前 | 1

| 已接受

已回答
run an .m file on a remote PC with matlab from another PC that runs LabView 2012
Hi, normally one uses <http://www.mathworks.com/help/matlab/matlab_external/using-matlab-application-as-a-dcom-server.html DC...

11 years 前 | 1

已回答
Integrate Triple Integrals with Simpson's 1/3 Rule
Hi, what about <http://www.mathworks.de/de/help/matlab/ref/integral3.html integral3>?

11 years 前 | 0

已回答
How to install add-On?
Hi, the supportPackageInstaller is a new feature in R2013b and doesn't exist in older releases than R2013b. Which version are...

11 years 前 | 2

| 已接受

已回答
How to generate imread to c coder
Hi, AFAIK no. For a list of supported functions for code generation see <http://www.mathworks.de/de/help/simulink/ug/function...

11 years 前 | 1

| 已接受

已回答
when did Matlab started to support the solidwrks importing?
Hi, take a look at the release notes of <http://www.mathworks.de/de/help/physmod/sm/release-notes.html?searchHighlight=solidw...

11 years 前 | 0

| 已接受

加载更多