Réponse apportée
How to choose matlab compiler version????
It depends on the MATLAB version being used to create them. If you are using MATLAB R2011a to compile, then it will always use M...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
How can I compile a function that uses a modified INPUTDLG function?
Just a thought: What if you included inputdlg? (also make sure that newid is being included) Something like: mcc -m yourmainFuc...

plus de 13 ans il y a | 0

Réponse apportée
Calling MATLAB Compiled exe File
The first time an exe is called, the exe unarchives some supporting files into a temporray folder and hence there might be some ...

plus de 13 ans il y a | 0

Réponse apportée
Exporting MATLAB code to word file
You can use the publish command to publish the code and the results in a neat manner directly to word, however this will also no...

plus de 13 ans il y a | 0

Réponse apportée
Calling programs (AMPL) from within Matlab on a Mac
I guess, when you run ampl, you would need certain directories to be on the PATH (environment variable) as well as some dynamic ...

plus de 13 ans il y a | 0

Réponse apportée
Toolbox Installation Error
The error is most probably due to the fact that you do not have write privileges in the folder where the install script is does ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
How to read a file from a specific directory?
Use full_filename = fullfile(str_fol1,str_fol2,filename); <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/fullf...

plus de 13 ans il y a | 2

| A accepté

Réponse apportée
PCODE
Depends on what you want? Pcode functionality is built in MATLAB whereas mcc uses the MATLAB Compiler product. At the same ti...

plus de 13 ans il y a | 1

Réponse apportée
Run app created in Matlab on Mac
You need to set two environment variables to the following. DYLD_LIBRARY_PATH and XAPPLRESDIR. The _mcr_root_ is the locati...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Build ITK .dll for Matlab Use?
You have a couple of options 1) If you have the code compiled in to a dll, you can directly load the dll using MATLAB loadlibrar...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
DAQ issue
Couple of quick things: When you start AO, you are staring a clocked operation with this particular board based on the sample r...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
How to access video from a remote camera?
You might also look at this <http://www.mathworks.com/matlabcentral/answers/12036-how-do-i-use-my-smart-phone-camera-as-a-webca...

plus de 13 ans il y a | 0

Réponse apportée
write data from gui in excel
xlswrite will work from a GUI. xlswrite(filename,handles.data)

plus de 13 ans il y a | 0

Réponse apportée
Titling figures from 1 till 20.
title(['image ' num2str(i)]);

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Change image after mouse over?
You cannot have WindowsButtonMotionFcn for the axes, but you can have it for the figure. Just select the GUI figure, right clic...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
MATLAB serial timeout handling.
The Timeout is a warning and hence you are unable to catch it. Searching a little, I found a couple of references that might be ...

plus de 13 ans il y a | 1

Réponse apportée
MATLAB serial timeout handling.
Use the ErrorFcn callback <http://www.mathworks.com/help/releases/R2011a/techdoc/matlab_external/timeout.html>

plus de 13 ans il y a | 0

Réponse apportée
plot 3d trajectory problem
It looks good to me: Here's my sample code % Sample trajectory t = 0:0.1:10; x = 5*cos(t); y = 5*sin(t); z = s...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Stop ai manually
Hi Kay, This is possible. Here is some sample code: ai = analoginpt(....); % Add channels and set it up % Use S...

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
NI USB-TC01 Thermocouple Measurement Device Compatibility with Matlab
Try using it with Data Acquisition Toolbox: <http://www.se.mathworks.com/matlabcentral/fileexchange/29707-read-a-national-instr...

plus de 13 ans il y a | 1

Réponse apportée
Construct Timer using evalin
evalin('base','Timer.Name = ''test123'''); You need to escape '

plus de 13 ans il y a | 1

Réponse apportée
Any help for converting from s-matrix to z-matrix
I don't know the context, but the code should be simple enough: % Assume you have S and it is a square matrix % Create U...

plus de 13 ans il y a | 0

Réponse apportée
How do I use my smart phone camera as a webcam in MATLAB?
With the iPhone, using the <http://itunes.apple.com/us/app/ip-cam/id333208495?mt=8 App suggested by Ashish above (IP Cam)>, you ...

plus de 13 ans il y a | 2

Réponse apportée
fopen inconsistency in compiled code
The file will be created in the ctfroot/application (doc ctfroot) directory. This is because, when the compiled application runs...

plus de 13 ans il y a | 1

Réponse apportée
MATLAB OOP question.
In MATLAB, a method would typically have a signature: classdef test1234 < handle properties (Access = public) prop ...

plus de 13 ans il y a | 2

| A accepté

Réponse apportée
entering new data in Neural Network Time Series Tool
Hi Mohammed, Typically when you create a TimeSeries network, the network output also acts as the second input (feedback input...

plus de 13 ans il y a | 0

Réponse apportée
entering new data in Neural Network Time Series Tool
This link contains the information you are looking for <http://www.mathworks.com/help/releases/R2011a/toolbox/nnet/gs/f9-56659.h...

plus de 13 ans il y a | 0

Réponse apportée
Close Command after running MATLAB function in EXCEL VBA
Kaustubha's suggestion looks good to me. Is your routine f_ann finished when you try and exit?

plus de 13 ans il y a | 0

Réponse apportée
How to generate C++ code using simulink coder?
Open Configuration Paramters (Ctrl + E) -> Code Generation Tab and select Target Language as C++

plus de 13 ans il y a | 1

Réponse apportée
Multiple import/edit of xls files
This should work! You might need to tweak it slightly! hExcel = actxserver('Excel.Application'); hExcel.visible = 1; % If y...

plus de 13 ans il y a | 1

| A accepté

Charger plus