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

mehr als 12 Jahre vor | 1

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 0

Beantwortet
MATLAB Builder JA question
Hi, yes. The <http://www.mathworks.com/products/javabuilder/ product page> states: "MATLAB Builderâ„¢ JA enables you to crea...

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 3

| akzeptiert

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 1

| akzeptiert

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

mehr als 12 Jahre vor | 1

| akzeptiert

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 1

| akzeptiert

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 2

| akzeptiert

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

mehr als 12 Jahre vor | 20

| akzeptiert

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 1

| akzeptiert

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 1

| akzeptiert

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

mehr als 12 Jahre vor | 1

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 2

| akzeptiert

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

mehr als 12 Jahre vor | 1

| akzeptiert

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

mehr als 12 Jahre vor | 0

| akzeptiert

Mehr laden