A répondu
Simulating a FIR filter
Use the filter command. In this case your denominator, (A), coefficients are just 1. x = [ 0 0 0 1 1 1 1 1 ]' % input b = [...

presque 5 ans il y a | 1

| A accepté

A répondu
Obtain input knowing output and transfer function
Since you have a simple transfer function, here's what I would do. (1) First generate some data that we will subsequently try ...

presque 5 ans il y a | 2

| A accepté

A répondu
curve fitting of non linear data for strain-time of creep experiment
Here's my attempt: load data1 t = time; e = strain; plot(t,e) %% Now try curve fit creep = @(p, t) p(1)*(1-exp(-p...

presque 5 ans il y a | 0

| A accepté

A répondu
Trouble with time delay differential equation
I've only made one small change to your function. You have tried to index a non-integer number back, but the "Z" variable holds ...

presque 5 ans il y a | 0

A répondu
How can I simultaneously solve for these equations?
If you have the symbolic toolbox, a straight forward approach works, although it takes some time ... % ODE propblem syms B...

presque 5 ans il y a | 0

A répondu
Error when using ode15
It is good practice to try and avoid globals, but rather pass them as auxilary variables into the function. Fao = 1487.351; % ...

presque 5 ans il y a | 0

| A accepté

A répondu
Plotting Step Response of a Differential Equation
You are close to a viable solution. Solve for an analytical solution, then make it a Matlab (anonymous) function with matlabFunc...

presque 5 ans il y a | 0

A répondu
Runge-Kutta 4th order method
First up, you will need a much smaller step size to get an accurate solution using this explicit RK4 (with no error control). I ...

presque 5 ans il y a | 2

| A accepté

A répondu
How to draw Fig. 1 from the attached pdf with this code
I didn't bother draw the other 3 lines, but you just ned to make the necessary changes to gamma for that. If you run somethi...

presque 5 ans il y a | 0

| A accepté

A répondu
fsurf not drawing cant explain
Do you really need to use the symbolic toolbox? Why not just plot a numerical surface? But you are right, your numbers are widel...

presque 5 ans il y a | 0

A répondu
Fitting Monod Equation with ODE45 to data using lsqcurvefit function
Here's my solution. First set up the measured data, plot it, and look to see that it is all OK. t = [0 3 5 8 9.5 11.5 14 16 ...

environ 5 ans il y a | 0

| A accepté

A répondu
Solve integrals with Matlab
Do you have the symbolic toolbox? If so, start with the int command. You can do both indefinite and definite integration. sy...

environ 5 ans il y a | 1

| A accepté

A répondu
MATLAB Help - Rolling Dice Simulation / Central Limit Theorem
A quick hack using randi and cumsum is N = 100 x = randi(6,N,6); cs = cumsum(x')'; for i=1:6 subplot(3,2,i) histogram...

environ 5 ans il y a | 0

| A accepté

A répondu
How to calculate the accumulated rainfall value of 1, 2, 3, 4, 5, 6 and 7 days.
Here is my solution: I notice that you've got few NaNs for about a year and a half. Your last year is also incomplete. I is...

environ 5 ans il y a | 0

| A accepté

A répondu
plot x axis as persentage
Below, I've plotted an arbitrary function between arbitrary limits, -5 and +37. %% x = linspace(-5,37)'; y = erf(x/20); ...

environ 5 ans il y a | 0

A répondu
inline function error help(tanh)
I can, but perhaps you should use anonymous functions. The inline approach is now discouraged. Instead of what you wrote above...

environ 5 ans il y a | 0

A répondu
how to plot multiple waves on one surface
Here is a mock up solution. Code is: below. I've used part of your data, but I've made up some similar data (using a sinc fun...

environ 5 ans il y a | 0

A répondu
LaTex with 2 strings separated by a num2str
Use an escape (backslash) for the % errordisplay=[' $\varepsilon_{RTP}=$ ',num2str(rtep),'\%'];

environ 5 ans il y a | 1

A répondu
Solving second order implicit differential equation
Just convert the 2nd order ODE into Cauchy form. You will of course need 2 initial condtions. Define x, now you original equat...

environ 5 ans il y a | 0

| A accepté

A répondu
Stimulating Chemical Reaction with Differential Equation on Simulink
Homework? Anyway, to get you started, take a look at my Simulink layout: I've painted the integrators yellow, and I have expli...

environ 5 ans il y a | 0

A répondu
how do i rotate an airfoil points? and plot.
Does this look better? Some (small) changes to your code. I swapped your rotation direction to better follow your example pl...

environ 5 ans il y a | 3

| A accepté

A répondu
plotting an exponential will a matrix over time
OK, your question is a bit vauge, and there are missing bits, i.e. the start point for y. I'm assuming you are trying to solve...

environ 5 ans il y a | 0

A répondu
finding lengths of an ellipse
If you need a little more help, then it pays to plot the ellipse and look at the arc lengths. t = linspace(0,2*pi)'; x = @(t)...

environ 5 ans il y a | 0

| A accepté

A répondu
I want to know how i can apply k-means clustering on my scatter plotted dataset.
You probably want to use kmeans. Since you didn't give us any data to workj with, nor did you give us any idea of the number o...

environ 5 ans il y a | 1

| A accepté

A répondu
Fitting model to titration data
For one thing, you don't assign an answer to function sseval. That's not going to help things. Here's my solution: I've re...

environ 5 ans il y a | 2

A répondu
Position of two subplots with bar charts
One option is to obtain the position of the plot with the long legend, and then re-size the other to the same width. But it's pr...

environ 5 ans il y a | 1

A répondu
Histogram x axis tick labels – string
Try >> get(gca,'XTicklabel') and hack that.

environ 5 ans il y a | 1

| A accepté

A répondu
Histogram x axis tick labels – string
Released 2016b. What's your version? >> which xticklabels C:\Program Files\MATLAB\R2018b\toolbox\matlab\graph3d\xticklabels.m...

environ 5 ans il y a | 0

A répondu
Histogram x axis tick labels – string
Hack the final xticklabel x = randn(1e5,1); x= x-min(x)+1; histogram(log(x)) xlim([0,3]) xt = xticklabels; xt{end} = 'oth...

environ 5 ans il y a | 1

A répondu
solving a very complicated equation implicitly
A quick answer is you probably need to dot-divide (./) the term with the (vector) rpf. 2nd point. Because I used a root finder...

environ 5 ans il y a | 0

Charger plus