Anthony Poulin
Followers: 0 Following: 0
Professional Interests: Embedded systems
Skills: Simulink, Stateflow, Simulink Coder, Embedded Coder, S-function (C, C++), Matlab (GUI development)
Estadística
2 Preguntas
39 Respuestas
0 Problemas
32 Soluciones
CLASIFICACIÓN
955
of 295.569
REPUTACIÓN
78
CONTRIBUCIONES
2 Preguntas
39 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
21
CLASIFICACIÓN
of 20.247
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
14.540
of 154.105
CONTRIBUCIONES
0 Problemas
32 Soluciones
PUNTUACIÓN
330
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
installing C/C++ compilers on 2014a Matlab version
Hello, Is the MS Visual Studio that you installed is a 64bits version?
alrededor de 9 años hace | 0
Resuelto
Counting pulses in a signal
Count the number of pulses that are the result of summing each pulse generator block. Pulse Generator blocks produce a recurr...
alrededor de 9 años hace
Elegant way of "sending to the next row" in a matrix
I have not the same result and using a transpose I think that I get what you want. A=1:10; B=reshape(A, [5,2])' So, B =...
alrededor de 9 años hace | 1
| aceptada
Resuelto
Make a full wave rectifier
Produce a full wave rectifier waveform for the given sine wave source. For a sine wave input, the output of the full wave rec...
alrededor de 9 años hace
Resuelto
Make a half wave rectifier
Produce a signal that outputs the given sine wave source when it is greater than zero and outputs zero when it is less than zero...
alrededor de 9 años hace
Elegant way of "sending to the next row" in a matrix
Hello, Do you try to use the "reshape" function?
alrededor de 9 años hace | 0
Resuelto
Add offset to a signal
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-offset-eqn.png>> You should see a downward...
alrededor de 9 años hace
Resuelto
Produce a cosine wave
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/cosine-eqn.png>>
alrededor de 9 años hace
Resuelto
Produce a sine wave
Produce a sine wave with amplitude 3: <<http://blogs.mathworks.com/images/seth/cody/sine-eqn.png>>
alrededor de 9 años hace
Resuelto
Add a block to a model
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-block-eqn.png>> In this case, the slope of...
alrededor de 9 años hace
Resuelto
Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...
alrededor de 9 años hace
How to set coursor on top left side of edit in matlab gui?
If you are able to find the position on your screen (X,Y) of the top left side of your edit box, you can use: set(0,'PointerLoca...
más de 9 años hace | 0
How to change Horizontal size of a Constant block based on the "Value" of the block in order to make the value visible
I understand what you want to do. And the command line that Abdelmalek and I provide you allows to resize a block. So you jus...
más de 9 años hace | 1
How to change Horizontal size of a Constant block based on the "Value" of the block in order to make the value visible
You have to use the command: set_param(Block,'Position',[50 100 80 130]) But I don't know how to dectect if the value is play...
más de 9 años hace | 0
Detect in simulink if the current and past 4 values are same or not
Hello, Do the picture attached solve your question?
más de 9 años hace | 0
Load .mat - file to base workspace?
Hello, you might use the evalin function: evalin('base', 'load(''matlab.mat'')');
más de 9 años hace | 8
how can I make the signalbuilder run
Hello, Do you want to select a specific group of your signal builder? If YES, use the command: signalbuilder(block, 'act...
más de 9 años hace | 0
Insert rows in a matrix
You can try something like this (with B = [NaN NaN 99 Nan 77 NaN]): for i=10:10:100 AA = [AA(1:i, 1:end); B; AA(i+1:e...
más de 9 años hace | 0
I am making a GUI. GUI plots the data. While GUI is plotting the data, to avoid any manual intervention I want to lock GUI window till I get the plot. I have disabled all controls in GUI in plot function to lock GUI. But GUI is not locking properly.
Hello, Can you put the command "drawnow", just after the function which disabled all controls and tell if it solve your probl...
más de 9 años hace | 0
| aceptada
error LNK2019: unresolved external symbol __imp_EncodePointer
Hello, Do you want to compile a mex file in 64 bits with a library in 32bits? I think, this is not possible (I never succe...
más de 9 años hace | 0
Is it possible to tilt displaying warning messages on the command window?
Hello, Have you try the command line: warning off
más de 9 años hace | 1
| aceptada
Export a matrix to a txt file
Hello, I give you this short code: fileId = fopen('MatrixA.txt', 'w'); %To create a file txtA = char(A); %To convert th...
más de 9 años hace | 0
| aceptada
how to check syntax error in state flow chart
I give you a small code (not optimize and without check...). The code give the "txt" variable which is the text from a stateflow...
más de 9 años hace | 0
| aceptada
how to check syntax error in state flow chart
Yes, you catch a char containing all the text. Then you have to treat this char, to separate the line you can find the charac...
más de 9 años hace | 0
how do I "locate file on disk" using matlab?
Hello, I am not sure to really understand your question. Is the "uigetfile" function that you are looking for? This fun...
más de 9 años hace | 0
how to check syntax error in state flow chart
Hello, I can give you some command line which help you to access to the content of the stateflow chart. % to catch the r...
más de 9 años hace | 0
how can improve the debug process using C-code on s-functions?
Hello, I wonder the same question... The only thing I find it is to click to "Attempt to continue" on the "Matlab System E...
más de 9 años hace | 0
| aceptada
Getting handle for interpreted MATLAB function in Simulink ?
Hello, How do you try to catch the handle? Using get_param($blockRoot,'handle'), I catch the handle. Using set_param($bl...
más de 9 años hace | 0
| aceptada
'rtwinext': undefined symbol "__imp__Z13TT_Initializev" Error loading real-time executable Error occurred while executing External Mode MEX-file motive 1.5 API C-MEX S-Function
Hello, I think that I have encountered a similar problem and it comes from "mex.h" (which is a Matlab API and if you simulat...
más de 9 años hace | 1
How to create exe from gui and simulink
Hey Ander, First what you want to do is possible! Then, to do it you have to create a DLL from your simulink model and an ...
más de 9 años hace | 1
| aceptada