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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 2

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 1

| akzeptiert

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 2

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 1

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

mehr als 15 Jahre vor | 2

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

mehr als 15 Jahre vor | 2

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

mehr als 15 Jahre vor | 2

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 2

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 1

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

mehr als 15 Jahre vor | 1

| akzeptiert

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

mehr als 15 Jahre vor | 1

Mehr laden