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

plus de 12 ans il y a | 1

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

plus de 12 ans il y a | 0

Réponse apportée
ButtonDownFcn on ActXControl video element
Hi, you have to use registerevent: %http://www.mathworks.com/help/matlab/matlab_external/using-events.html#f90131 ...

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 0

Réponse apportée
MATLAB Builder JA question
Hi, yes. The <http://www.mathworks.com/products/javabuilder/ product page> states: "MATLAB Builder™ JA enables you to crea...

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Set excel cell dimension.
Hi, sure. Here you go: ex = actxserver('excel.application'); ex.Workbooks.Add ex.Visible = 1; ex.Columns.Item('...

plus de 12 ans il y a | 3

| A accepté

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

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 1

| A accepté

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

plus de 12 ans il y a | 1

| A accepté

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

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 1

| A accepté

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

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 2

| A accepté

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

plus de 12 ans il y a | 20

| A accepté

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

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Ja Builder with java 1.7
Hi, please apply the following <http://www.mathworks.com/support/bugreports/948391 patch> and try again.

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 1

| A accepté

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

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 1

| A accepté

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

plus de 12 ans il y a | 1

Réponse apportée
Integrate Triple Integrals with Simpson's 1/3 Rule
Hi, what about <http://www.mathworks.de/de/help/matlab/ref/integral3.html integral3>?

plus de 12 ans il y a | 0

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

plus de 12 ans il y a | 2

| A accepté

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

plus de 12 ans il y a | 1

| A accepté

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

plus de 12 ans il y a | 0

| A accepté

Charger plus