![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/aouelletmathworkscom_1589373833960_DEF.jpg)
Andrew Ouellette
Followers: 0 Following: 0
Python, C++, C, Java, MATLAB, HTML
Spoken Languages:
English
Professional Interests:
Control Systems
Statistics
RANK
1,868
of 297,046
REPUTATION
34
CONTRIBUTIONS
0 Questions
17 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20,422
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Bodeplot with XLim option does not rescale y-axis in R2024b
Hello Tor, This is a side effect of the update to charts in R2024b. The chart's Y limits are no longer linked to its X limits. ...
11 days ago | 0
| accepted
Change marker colour of pzplot
Hi Jan, Starting in 24b, we introduced new chart and response objects for pzplot(). Each model you input to pzplot() will gene...
22 days ago | 0
| accepted
MATLAB R2024 Rb
Hi Shahin, 2 notes: 1) In R2024b as of update 2, rlocusplot() generates an incorrect response for improper models. This bug wi...
2 months ago | 0
Simulating the impulse response of a higher order filter.
Hello, You are encountering this behavior because your cascaded system is poorly conditioned numerically. Hopefully this is not...
3 months ago | 0
How can I set linewidth directly in bode command?
For releases prior to R2024b, see Sid's answer. Starting in R2024b, you can set the line width using the chart API. sys = tf(4,...
3 months ago | 1
Why the peak values are evidently different under the impulse function to a second order function with zero damping?
Hello, You can use the impulseplot() syntax of providing a final time to have MATLAB automatically choose a resolution for your...
4 months ago | 0
Adding plots to an existing root locus plot
Hello, Design requirements (constraints) for damping ratios and natural frequencies in root locus charts is only available with...
4 months ago | 0
How do I show characteristics from my root locus figure?
Hello, There are two methods to enable characteristic visibility in Control System Toolbox charts. 1) After creating the chart...
4 months ago | 0
Matlab plots step response vs timestep number instead of time in seconds
You should use the "stepplot" function. s = tf('s'); %Laplace variable t = 0:0.01:10; %time vector start, dt , end K = 1; ...
5 months ago | 0
Graphics Incompatibilities in Control System Toolbox between R2024a and R2024b
Hello, You can achieve most of this behavior by interacting with the new chart API. Give the following a go: A1 = 1; wp1 = ...
5 months ago | 0
| accepted
Automatic method that returns the best combination of the coefficients of the polynomial with the lowest RSS value
Hello, You can use the "polyfit" function with n=2 to get the parabola of best fit for your data: https://www.mathworks.com/he...
2 years ago | 0
issues solving two interdependent optimization problems with nested functions
Hello, From your description, it sounds like you would like to solve a contrained optimization problem. This is, you would like...
2 years ago | 0
| accepted
Collision detection and solving of a spherical ball in a cylindrical boundary
Hi Victor, You can detect a collision between the ball and the cylinder if the distance between the center of the ball and the ...
2 years ago | 0
Gain/phase margin calculated relative to -540.
Hi Jaco-Louis, From the documentation page for margin: https://www.mathworks.com/help/control/ref/lti.margin.html the smalles...
2 years ago | 0
| accepted
How to load a trained classifier model inside Simulink MATLAB function in MATLAB 2015a?
Hi Roya, As you have just discovered, there are a few restrictions on the MATLAB Function block that are not present in the MAT...
2 years ago | 1
| accepted
Interpolation of directional angle between multiple coordinates
Hello, You can perform 2D interpolation by using the interp2 function: https://www.mathworks.com/help/matlab/ref/interp2.html ...
2 years ago | 0
Is there a good way to validate that all inputs to a function have compatible sizes when using a (Repeating) arguments block?
Hi Matthew, I was able to achieve the behavior you desire by looping through the variable arguments and passing the argument nu...
2 years ago | 0
| accepted