photo

Mark

MathWorks

Last seen: 8 jours il y a Actif depuis 2011

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
52 Réponses

RANG
685
of 300 753

RÉPUTATION
114

CONTRIBUTIONS
0 Questions
52 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
23

RANG
 of 21 075

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 170 858

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 3
  • 6 Month Streak
  • Knowledgeable Level 2
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Can we have single harness for MIL and SIL ?
If I understand the question correctly, you probably don't need to use two model blocks. I would propose the alternative of: Cr...

presque 2 ans il y a | 0

Réponse apportée
Rate Transition with adjustable sampling rate
Dear Boru, Unfortunately, Simulink doesn't support changing sample times in the generated code. The underlying issue is that ...

plus de 6 ans il y a | 0

Réponse apportée
How to customize the code interface of a function generated of a reference model
Dear Boru, If you have Embedded Coder, it is possible to control the entry points using the Function Prototype Control featur...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Simulink debugger and referenced models
I would recommend using a feature such as signal logging to monitor the values inside the model reference. It doesn't let you in...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Make error in compiling simulink 3d simulink file
I second Walter's theory about the writability of the directory. An easy way to check this would be to run MATLAB as administrat...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Recompiling an S function, altered results
I recommend checking to see if there are any differences in support for floating-point operations. Specifically, check to see if...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
signal builder: repeat a signal for n times in one simulation (not to be confused with running in succession)
I don't know of a good way to do this using "Signal Builder", but the "From Workspace" block allows you to specify repetition af...

plus de 14 ans il y a | 0

Réponse apportée
Creating simulink block and hidding the code
The S-function approach is probably the right way to go. If you plan on distributing it, you would need to provide a ".mex" file...

plus de 14 ans il y a | 0

Réponse apportée
Shared Utilities template file
I'm not sure if it's possible, but I would recommend looking at the customized file banners. I believe that there are different ...

plus de 14 ans il y a | 0

Réponse apportée
accessing data from workspace
In addition to the FromWorkspace block, you can also use base workspace variables in most dialog boxes in Simulink. Also, if you...

plus de 14 ans il y a | 1

Réponse apportée
Triggering a subsystem to run for set duration
Fangjun's approach is probably the best way if the interval between the 0.25 pulses is also known in advance. If it is not, I w...

plus de 14 ans il y a | 0

Réponse apportée
summation
There are a couple options available: * You could chain a series of 64 unit delays together and run a branched signal off of ...

plus de 14 ans il y a | 0

Réponse apportée
Efficiency about Embedded Funtion in Simulink
The best way to do this is probably to use Accelerator Mode, or Rapid Accelerator mode. There is some overhead that occurs duri...

plus de 14 ans il y a | 0

Réponse apportée
Define Array data type
Fangjun is correct, the data type is independent of/orthogonal to the dimensions. You can also set the dimensions on most block...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
How do I load text stored in an external file and display it as an annotation in a Simulink models?
One possible way to do this is to use a mask on top of an empty subsystem instead of annotations. From there, you can use the m...

plus de 14 ans il y a | 0

Réponse apportée
Import Workspace Data - Lookup Table vs. From Workspace?
As a third method, I would propose using an inport, and then specifying a workspace variable using the "Import/Export" section o...

plus de 14 ans il y a | 0

Réponse apportée
3d graphics with s-function
For testing, I would recommend Kaustubha's approach for creating an instance of "Example1" and then trying to use it. For the bi...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
S-function Runtime-evaluation of parameters
This should be possible if you take two steps inside the S-function: # You need to make the dialog parameters tuneable run-t...

plus de 14 ans il y a | 0

Réponse apportée
Triggered subsystems at time t=0
Unfortunately, this sort of behavior is definitely impossible using only a triggered subsystem. Since the "edge" that triggers ...

plus de 14 ans il y a | 0

Réponse apportée
Dynamically sized IO ports in simulink
The code above is mostly right, but there are some minor changes that you will need to make: * The calls to "mdlSetOutputPort...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Subversion and mdl files
In general, doing text merges on ".mdl" files doesn't go well, so I would strongly advise against this. The primary issue is th...

plus de 14 ans il y a | 0

Réponse apportée
How to define parameters in Simulink ?
You may want to make "T" a state variable using work vectors. Within Simulink, blocks aren't able to influence/alter/change the...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
How to determine if segmentation violation is caused by MATLAB function or user-defined function?
The general way to read a stack trace is that each row indicates a function call, and the top one is the deepest/most recent fun...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Simulink and COM (Component Object Model)
Fangjun is correct, you can only interface MATLAB through COM, but you *can* control Simulink from MATLAB, which could be enough...

plus de 14 ans il y a | 1

Réponse apportée
Synchronize data output with clock pulses.
I believe that the issue is with the "Enable" block inside the enabled subsystem. If you double-click on this block, you can ac...

plus de 14 ans il y a | 0

Réponse apportée
reading ASCII data from a file from s function
I suspect that this is only a subset of the code in the S-function, so it is a little difficult to tell if things are truly miss...

plus de 14 ans il y a | 0

Réponse apportée
Get the Simulink block's handle of the block under the mouse
I don't believe that there is any way to detect a block that you are hovering over but haven't clicked. It is possible to detec...

plus de 14 ans il y a | 0

Réponse apportée
Logging of Merge block Inputs
I would recommend putting a "Signal Conversion" (not to be confused with Data Type Conversion) block immediately upstream from e...

plus de 14 ans il y a | 0

Réponse apportée
Access to the Matlab / simulink API
In conjunction with Kaustubha's point above about the automation server, the actual commands that you will want to run will like...

presque 15 ans il y a | 1

Réponse apportée
No supported Visual C/C++ compiler found. Check your installation of Visual C/C++.
I believe that this occurs if you are using Visual Studio Express. When Simulink creates a VS solution/project, it actually does...

presque 15 ans il y a | 1

| A accepté

Charger plus