Réponse apportée
R2012b xPC Target xpcexplr cannot open
Hi, thats a bug. Patch can be found <http://www.mathworks.com/support/bugreports/874378 here>.

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Simplify throws an error message and I don't understand why
Hi, that syntax is a MuPAD command so it works in MuPAD only. In the case you want to call it from MATLAB use: feval(sym...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
problem using textscan: doesnt actually scan anything.
Hi, try fid = fopen('C:\Users\Lab\Desktop\niv.txt') num=textscan(fid,'%d') fclose(fid)

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Error in mex (line 206) please help
Hi, run the following code and post the output here: disp('OS') disp('=====================================') syst...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
how to use system() to cal external Winzip to matlab?
Hi, based on some <http://www.memecode.com/docs/winzip.html searching the internet> you can do something along this: fol...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Use of Arrays in Simulink
Hi, why not using a MATLAB function block with this code: function y = fcn(u) %#codegen u(u<5) = 0; y = u; ...

plus de 12 ans il y a | 2

| A accepté

Réponse apportée
using windows event manager
Hi, you could write a C/C++ MEX file and use <http://msdn.microsoft.com/en-us/library/aa363679%28v=vs.85%29.aspx ReportEvent>...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Mex - Compiler doesn't include *.lib but they are there!
Hi, it seems like you specified the full name to the lib file. That is not needed. with -L flag you specifiy the folders to l...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
please i want to calculate sum of E generated (i.e 1 to 5). i try it but the last E generated is showing as Etotal
Hi, without having a close look I guess the last line should be: Etotal = Etotal + sum(E) Also declare Etotal to be 0 ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Extracting y-data from ezplot.
Hi, you need to get the contourMatrix: bla = ezplot('1.5*x.^.56*y.^.44=1', [0 6 0 6]); tmp = get(bla,'contourMatr...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
How to read .ini file dynamically during runtime using standalone application created using Matlab Compiler
Hi, use <http://www.mathworks.com/support/solutions/en/data/1-6OFV37/index.html this> and place the .ini file in the same fol...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Using Test & Measurement Toolbox to control Keithley 6517b via ICS 488-USB2 USB-to-GPIB, however Toolbox is not detecting hardware. Can anyone help?
Hi did you took a look <https://www.mathworks.com/products/daq/supported/keithley-instruments.html here>. It seems like you n...

plus de 12 ans il y a | 0

Réponse apportée
parfor failed to deserialize data.
Hi, it seems like a worker is sending back data to MATLAB which is corruped or too big. keep in mind the size limitation of t...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
What do I need to compile a Simulink Model?
Hi, example and explanation <http://www.mathworks.com/support/solutions/en/data/1-KPFVVI/index.html here>.

plus de 12 ans il y a | 2

| A accepté

Réponse apportée
Numerical solution of ODE
Hi, take a look at that <http://www.mathworks.com/matlabcentral/answers/13502-second-order-ode-with-initial-conditions post>....

plus de 12 ans il y a | 1

Réponse apportée
How can I use variables in mkdir?
Hi, what about a = 'hello' b = 'world' c = 12 d = 'xxx' mkdir([a,'.',b,'.',num2str(c),'.',d])

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Best practice for C files in matlab 64bit
Clearly the DLL does not export the "return_my_double" function. Recompile your code correctly and make sure the function is rea...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
problem in MEX SETUP
Hi man, # don't panic ;) # Take a look at the SDK install log (Clicke the View Log Button). Scroll down and start reading fr...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
In parfor, how to create a temp folder for every worker
Hi, I would use the process ID for that: matlabpool open 4 parfor i=1:20 w=getCurrentWorker; mydir = f...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
Issue to remove generated mex file after Simulink Model execution in parfor
Hi, try a clear mex before removing the directory.

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
Task scheduling for Matlab
Hi, this command seems pretty strange. I would rather expect that you select the MATLAB.exe as program to run in the TaskSche...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Java Error when call function fom .net assembly in c#
Hi, are you using R2013a? If so, the second error regarding the mkl.dll could be this: <http://www.mathworks.com/support/b...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
In order to use my compiled mex function windows SDK 7.1 is required... Does anyone know why?
Hi, You don't need the SDK 7.1 in order to run a compiled component, e.g. a mex file. You simply need the Visual Studio 2010 ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Java error on starting MATLAB R2013a
Hi, what does this give for you >>org.apache.log4j.Logger.getLogger('com.almworks.sqlite4java').getLevel ans = ...

plus de 12 ans il y a | 2

| A accepté

Réponse apportée
How can I check out an offline license from concurrent network license
Hi, I guess you mean <http://www.mathworks.com/help/install/license/borrowing-licenses.html license Borrowing>. If you need a...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
compiled code doesn't find perl script
Hi, either use fullfile and ctfroot to get there abs_pth = fullfile(ctfroot,'home','yannick','bin','myfile.pl') Or us...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
I have 2 cellArray which changes double to string. I wanna compare these 2 cellArray whether they are same or not.
Hi, in your case (double array or cell which contains char data) an isqual is enough: % cellArray=[1,2,3] %double % c...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to create a void function in MATLAB?
Hi, %void myfun(void) function myfun() %void myfun(double a) function myfun(a) So in your case something ...

plus de 12 ans il y a | 38

| A accepté

Réponse apportée
Calling new on Matlab Generated Class from Dot Net Crushes the App (m_interpreter.dll)
Hi, try disabling the JIT from the C# side: [assembly: MathWorks.MATLAB.NET.Utility.MWMCROption("-nojit")] Does it w...

plus de 12 ans il y a | 0

Réponse apportée
Access to Excel-Worksheet-Cells Property
Hi, use this: get(get(oWorksheet,'Cells',2,2),'Address')

plus de 12 ans il y a | 3

| A accepté

Charger plus