Respondida
Can you have both 32 bit and 64 bit MATLAB installed?
Yes, it is possible to have both 32- and 64-bit MATLAB installed on the same Windows machine.

más de 15 años hace | 0

| aceptada

Respondida
Can anyone please tell me how to design a block for converting a hex to Binary
I see a few issues with this code: 1. As Walter pointed out, you are over-writing 'sys' in the for-loop. I think what you rea...

más de 15 años hace | 0

Respondida
How to apply validation on matlab M-file?
Looks like you have your call to warndlg after "close(gcbf)". Try putting it above that.

más de 15 años hace | 0

| aceptada

Respondida
Simulink: Two simulation steps within one
What have you set as "Iteration limit source" in the For Iterator block? It seems like all you need to do is make this "external...

más de 15 años hace | 0

Respondida
Fixed Point Scaling for RSim Executables
As is described on <http://www.mathworks.com/help/toolbox/rtw/ug/bqnylvq.html#bqny0b5 this> page: "The Simulink Coder softwar...

más de 15 años hace | 0

Respondida
Physical Connection (Physical Modeling)
I don't have experience with Physical Modeling, but I know that you can use the <http://www.mathworks.com/help/toolbox/physmod/s...

más de 15 años hace | 0

| aceptada

Respondida
Write binary data with custom format to file from simulonk
Have you tried using Time Series as the "Save Format"? This format doesn't convert the data to double.

más de 15 años hace | 0

Respondida
Help: MATLAB command to close Model Explorer
me = daexplr; % Open Model Explorer me.delete; % Close Model Explorer

más de 15 años hace | 2

| aceptada

Respondida
hi I am a student want to create standalone application of my matlab project
The mcc command is basically a function in the MATLAB Compiler toolbox. Each version of MATLAB also ships with its corresponding...

más de 15 años hace | 0

Respondida
Connecting to webcams on student version
The basic Student Version does not ship with Image Acquisition Toolbox. You can however get it as an add-on: http://www.mathwork...

más de 15 años hace | 0

Respondida
Unresolved External errors when compiling an S-Funtion in VS2008
Have you also ensured step 4 (Add "$MATLABROOT\extern\lib\win32\microsoft" in the options Linker->General->Additional Library Di...

más de 15 años hace | 0

Respondida
How to convert a C-file to M-file using MEX-files
A good place to start might be here: http://www.mathworks.com/support/tech-notes/1600/1605.html Please post back if you run i...

más de 15 años hace | 1

| aceptada

Respondida
Matrix/Array Multiplication problem in Simulink
Use the Product block from the Simulink->Math Operations library and set "Multiplication" parameter to "Matrix(*)".

más de 15 años hace | 0

| aceptada

Respondida
MCRInstaller.exe missing on my machine
Is that the same path that is returned when you execute "mcrinstaller" at the MATLAB prompt? Also, note that you can automati...

más de 15 años hace | 0

| aceptada

Respondida
Error using ==> mcc
It seems like you selected LCC as the compiler with "mbuild -setup". However, LCC cannot be used with MATLAB Builder EX. You nee...

más de 15 años hace | 2

Respondida
S-Function && MS Visual Studio C/C++: Segmenation Violation -> how to find error?
It is likely that the SegV is getting caught in a MathWorks binary (does MSVC show you a stack trace that points to a line numbe...

más de 15 años hace | 0

Respondida
matrix variable saved with data store blocks
Here is some documentation on <http://www.mathworks.com/help/toolbox/simulink/ug/bsds2rv.html Using Global Data with the MATLAB ...

más de 15 años hace | 0

| aceptada

Respondida
Update Path Externally
If you don't mind MATLAB performing this operation silently, you could use the following system command (MATLAB must be on path)...

más de 15 años hace | 1

Respondida
can't save image with transparent background
See <http://www.mathworks.com/support/bugreports/299665 Bug Report #299665>

más de 15 años hace | 2

Respondida
how to filter awgn
SMOOTH simply performs a moving average on the signal, which is not sufficient to remove white noise. You need a filter designed...

más de 15 años hace | 2

Respondida
I could't compile the function unravel.c from DIP using MATLAB book by Rafael Gonzalez and Richard Woods
You have a typo in the line: void unravel(unit16_T *hx,double *link,double *x, double xsz,int hxsz) It is uint16_T, not unit...

más de 15 años hace | 2

| aceptada

Respondida
MEX-file error during preprocessing
The "Invalid MEX-file" error is typically thrown when your MEX-function references shared libraries (DLLs) that are not on the s...

más de 15 años hace | 0

Respondida
file handle release
You could try: fIDs = fopen('all'); for i = numel(fIDs) fName = fopen(fIDs(i)); disp(fName); end To see if the f...

más de 15 años hace | 2

Respondida
persistent mxArray untill matlab exits wtih Dll
I would expect your original code to work (unless your external library somehow re-allocates the memory pointed to by Status) - ...

más de 15 años hace | 0

Respondida
Create Band-Limited Noise to an Audio in Simulink
The signal from the From Multimedia File Block is a vector signal (you can see the exact size of the signal by turning on displa...

más de 15 años hace | 0

Respondida
Setting up Java Environment
I believe the right command is: >> version -java "java -version" can be executed a system command: >> !java -versio...

más de 15 años hace | 0

Respondida
Error while linking "C" with MATLAB
The title of your question suggests a linking error, but your questions points to a runtime issue. If you do see a linking error...

más de 15 años hace | 0

Respondida
c ++ library using matlab
You have the following options: # <http://www.mathworks.com/products/compiler/ MATLAB Compiler>: To generate C/C++ shared libra...

más de 15 años hace | 1

Respondida
Store a videoinput in a Data Store Memory block in Simulink
I believe Data Store Memory only supports numeric types (see Section "Data type" on the <http://www.mathworks.com/help/toolbox/s...

más de 15 años hace | 1

| aceptada

Respondida
assertion error for persistent memory object
Since all memory held by variables passed in and out of MEX-functions is managed by MATLAB, it is not advisable to use mxSetPr t...

más de 15 años hace | 1

Cargar más