답변 있음
Stream data from C++ script to Matlab
The use of C++ <http://www.mathworks.com/support/tech-notes/1600/1605.html MEX-functions> seems most appropriate, but depending ...

대략 14년 전 | 0

답변 있음
Data size/type - Simulink
I am assuming that you are using the MATLAB Function block to run this code in Simulink? It seems like the issue is that the out...

대략 14년 전 | 0

답변 있음
Could not access the MCR component cache Error
Not sure, but could it be that the extracted CTF archive somehow got corrupted? I think it is usually extracted to C:\user_name\...

대략 14년 전 | 8

| 수락됨

답변 있음
I want to see the hdl code generated using dsp builder in quartus 2 tool.
Do you mean it is in a format that cannot be opened in a text editor? DSP Builder is actually an Altera product (not from MathWo...

대략 14년 전 | 0

답변 있음
How to compile and link all files generated with RTW from my .tmf file ??
It's not clear exactly what kind of support you are looking for, but <http://www.mathworks.com/help/toolbox/rtw/ug/bse3c8c-1.htm...

대략 14년 전 | 0

답변 있음
How to send command from matlab to my IP camera
I don't know much about image acquisition with MATLAB, you might find this previous discussion useful: http://www.mathworks.com/...

대략 14년 전 | 0

답변 있음
how to converting a subsystem to a referenced model
You can simply right-click on the subsystem and select "Convert to Model block" - the conversion will be done for you automatica...

대략 14년 전 | 0

| 수락됨

답변 있음
Simulink and linux
It looks like you need to install OpenGL libraries. I'm not familiar with this issue, but found a couple of solutions that you m...

대략 14년 전 | 1

| 수락됨

답변 있음
How to call a program in C from Matlab
You need to write a MEX-function that can perform the data marshaling. See <http://www.mathworks.com/support/tech-notes/1600/160...

대략 14년 전 | 1

답변 있음
Add a "Function Call Output" in a "Embedded MATLAB Function block" from command window
Do you mean you want to produce a function-call signal to use with a Function-Call Subsystem? If yes, I don't think this is poss...

대략 14년 전 | 0

| 수락됨

답변 있음
Code generation for FFT
Not entirely sure, but this solution might be relevant to your case: <http://www.mathworks.com/support/solutions/en/data/1-1BSQL...

대략 14년 전 | 0

답변 있음
model reference
See Referencing a Model: https://www.mathworks.com/help/releases/R2011b/toolbox/simulink/ug/f4-141721.html Not sure if SimPower...

대략 14년 전 | 1

| 수락됨

답변 있음
An executable (.exe) for Simulink
I would recommend looking at some of <http://www.mathworks.com/products/simulink-coder/demos.html the demo videos for Simulink C...

대략 14년 전 | 1

답변 있음
Simulink: Is there any setting that allows for partial library linking?
I'm not 100% sure, but I don't think such functionality currently exists. It seems like such a feature might cause a nightmare f...

대략 14년 전 | 2

답변 있음
MATLAB Builder EX not available on mac?
Perhaps you own a license, but don't have the software installed? Run the command "ver" to see the list of installed toolboxes.

대략 14년 전 | 0

답변 있음
How to save or convert a simulink model to csv file
A .csv file is typically a text-file with comma-separated numerical values - how can a Simulink model be represented simply in t...

대략 14년 전 | 0

| 수락됨

답변 있음
Can I change block into block library ?
You need to create a Library model and then copy your blocks into it. For example: >> new_system('myLibrary', 'Library...

대략 14년 전 | 1

답변 있음
Problem with .mexw64 file
Looks like a Windows UAC issue to me. Could you try running your model from a directory other than C:\ ? Perhaps Windows need ad...

대략 14년 전 | 0

| 수락됨

답변 있음
S-Function Level 1 vs S-Function Level 2
I don't have a definite answer, and it's difficult to say not having seen your code, but it could be because Level-2 S-functions...

대략 14년 전 | 0

답변 있음
Navigate to the correct location in Simulink with path given
>> open_system('full/path/here', 'force') The 'force' argument is only needed if you have masked subsystems.

대략 14년 전 | 1

답변 있음
Simulink block to extract signal at index from vector signal doesn't exist?
You need the <http://www.mathworks.com/help/toolbox/simulink/slref/selector.html Selector> block. It is supported for HDL Code G...

대략 14년 전 | 4

| 수락됨

답변 있음
Embedded coder PIL
You'll need to develop your own PIL configuration. See <http://www.mathworks.com/products/embedded-coder/demos.html?file=/produc...

대략 14년 전 | 0

| 수락됨

답변 있음
Simin problem when trying to input array from workspace to simulink
Do you mean that you are using the From Workspace block? Where exactly is the error message displayed? Somehow the message that ...

대략 14년 전 | 0

답변 있음
Stand Alone exe created on 32 bit machine but for use on 64 bit machine.
Could you try running the executable from a command window, instead of simply double-clicking on the icon? Running it manually f...

대략 14년 전 | 0

답변 있음
Sparse matrix construction in simulink
You'll probably need to write this directly as a MEX-function because there's no C equivalent to a cell-array. See <http://www.m...

대략 14년 전 | 0

답변 있음
Trouble compiling Mex files, "standard C libraries not found."
<http://stackoverflow.com/questions/5216399/usr-lib-libstdc-so-6-version-glibcxx-3-4-15-not-found This> might help.

대략 14년 전 | 0

답변 있음
simulink &m-file
See the first line in my answer here: http://www.mathworks.se/matlabcentral/answers/26682-linking-simulink-from-m-file

대략 14년 전 | 0

| 수락됨

답변 있음
Simulink: Matlab Fcn Block - Horrendously Slow!
Could you try running the code directly in MATLAB in a loop to imitate the behavior of the MATLAB Function block in a simulink m...

대략 14년 전 | 0

답변 있음
fix point for simulink signals
Yes, technically speaking that should be all you need to do, but the <http://www.mathworks.com/products/simfixed/description2.ht...

대략 14년 전 | 0

| 수락됨

답변 있음
Simulink Counter
Not exactly sure what you mean. Assuming that you intend to run the Simulink model, you will probably use the <http://www.mathwo...

대략 14년 전 | 0

더 보기