Respondida
The following example solves the fourth order equation f(x)=x4 − 7x3 + 3x2 − 5x + 9 = 0 a) Find the roots of f(x) b) The value at f(2)
Maybe like this? p = [1 -7 3 -5 9] roots(p) I think you take this approach: f = @(x) x.^4 - 7*x.^3 + 3*x.^2 - 5*x + 9 f(2) ...

alrededor de 4 años hace | 1

| aceptada

Respondida
How can I graph a nonlinear system of differential equations?
@Josh Ciesar I don't know how your graphs are supposed to look like because I'm not an adiabatic pistonist. But first things fi...

alrededor de 4 años hace | 2

| aceptada

Respondida
Create two sinusoids, plot them and verify their orthogonality. Please give three different sets of sinusoids and and repeat above procedures.
Hi @MD ALAMIN If you are new to MATLAB, please don't stress/force yourself to plot the two sinusoids. Take your time to learn M...

alrededor de 4 años hace | 1

| aceptada

Respondida
Why my graph not same as research paper?
Hi @Nur Sorry for the misidentity because the name, the title, and the topic look exactly the same. Anyway, I have fixed some ...

alrededor de 4 años hace | 0

Respondida
Trying to calculate the temperature from the equilibrium heat equation
Hi @tom shneor Edit: This is a little difficult for me to imagine since the values of the parameters are not provided. assuming...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to add a horizontal line in a plot that corresponds to a maximum?
Hi @Irfanudin Nor Anwar No worries, I take your samples. Generally, you need to guess the function of a curve that might fit in...

alrededor de 4 años hace | 1

Respondida
Solving System of ODEs using MATLAB
Hi Teo, Do something like this: odefcn = @(t, y) [y(2);... 0.1*sin(t) - 10*y(1) - 2*sqrt(10)*y(2)]; tspan = ...

alrededor de 4 años hace | 0

Respondida
HVAC FOR HOUSE USING PID CONTROLLERS
@nikhil murali sathyavathi You can follow a very detailed example of modeling and control here https://www.mathworks.com/help/...

alrededor de 4 años hace | 0

Respondida
solve 2nd order non linear equation of motion
Hi @Martin Lindner As far as the technical issue is concerned, the MATLAB code is fixed and able to produce the Equations of Mo...

alrededor de 4 años hace | 1

Respondida
Transfer function of current block in 2RC ECM model
@Vishnubharathi thirupathi Since it is a RC circuit, can you write up some equations using Kirchhoff's circuit laws? The equat...

alrededor de 4 años hace | 0

Respondida
Plotting unusually Shape in Matlab
Hi @Bunyod Samandarov This should give you a good start. worldmap 'europe' axis off getm(gca, 'MapProjection') geoshow('lan...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to plot the following surface
Hi @Matt J, Sometimes I have troubles visualizing the geometry. Can I plot like this? It should look like an inverted cone. x ...

alrededor de 4 años hace | 2

Respondida
calculate the Γ matrix in MATLAB from Φ Matrix - State space equation
@Rajesh Kanesan Thanks for showing your calculation of the Gamma or , I see now... Given the matrices and , you want to go fro...

alrededor de 4 años hace | 1

Respondida
2 inputs data training for ANN
@Krishna Saboo For a shallow neural net, you can try something like this: X = [1.0000 0.9019 0.6952 0.4712 0.2781 ...

alrededor de 4 años hace | 1

| aceptada

Respondida
Matlab and chemical enngineering
Hi @Abdul Hanan Wali Search this book in your university library because I think this book might be for you if you want to solv...

alrededor de 4 años hace | 0

Respondida
How Do I Fix This Fuzzy Gain Scheduling System?
Hi @Isyraf Izuddin The error occurs because the Plant Transfer Function block can ony accept 1 INPUT, instead 3 SEPARATE Inputs...

alrededor de 4 años hace | 1

| aceptada

Respondida
my code doesn't work as it should,need help
Hi @Lovre Not sure if this is what you want. but I just modified a little to simulate the heat pump in accordance to your requi...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to find x value for certain y value of a lineplot in matlab
Hi @佳丽 周 No joke, but this is the graphical approach.

alrededor de 4 años hace | 2

Respondida
Why my graph not same as research paper?
Hi @nur One of the ways to find out is to determine the equilibrium points from the advection-dispersion equation. I haven't c...

alrededor de 4 años hace | 1

Respondida
Combine two controllers in ODE45 environment
Hi @Telema Harry Since you are unable to provide more info, here is a very simple example, which I'm not sure if this is what y...

alrededor de 4 años hace | 2

| aceptada

Respondida
How to fit a cumulative normal distribution into a smooth curve?
Hi @Rohit Sinha The Error function is essentially identical to the standard normal cumulative distribution function, and so I a...

alrededor de 4 años hace | 2

| aceptada

Respondida
Random amino acid sequence generation with a given amino acid count of a specified sequence
Hi @Sk. Hassan I'm no expert in this, but it is possible to generate a sequence of numbers that associate with the Roman alphab...

alrededor de 4 años hace | 1

Respondida
How do we find Frequency domain Features of Signal
Hi @ANJANEYA PRASAD Consider using the Signal Analyzer App in the Signal Processing Toolbox. Also see: https://www.mathworks....

alrededor de 4 años hace | 0

Respondida
Eigenvalue analysis method of 'damp' function
Hi @ayumi.t According to the damp() documentation, the function returns the following: the poles (eigenvalues) of the dynamic ...

alrededor de 4 años hace | 0

Respondida
Proper system linearization for tracking problems
Hi @Federico Toso Perhaps you should consider offline-designing a family of PID controllers that give consistent satisfactory c...

alrededor de 4 años hace | 1

| aceptada

Respondida
Problem with optimization using fmincon
@Bartlomiej Skutecki Sometimes, the optimization problem can be understood better if you can visualize the objective function: ...

alrededor de 4 años hace | 1

Respondida
create a function in Matlab to calculate Ampere Force with control structures
Hi @Brendina Mehmeti Here is an example to calculate the force per meter of length between two parallel conductors using Ampère...

alrededor de 4 años hace | 0

Respondida
how to have a continious sine wave in different periods
@azerty and qwerty Think you probably want to show something like this. Do you remember I mentioned about the points where the...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to plot a bifurcation diagram for a Second order differential equation ?
@PONNADA DURGA Prasad So you want to vary the frequency parameter from 0.1 to 3 rad/s in the following ODE and plot the bif...

alrededor de 4 años hace | 0

Respondida
Should we always search for the global minima in our optimization problem?
Hi @Shaily_T For academic reasons, maybe a 'Yes' if your team want to demonstrate the novelty in the optimization problem that ...

alrededor de 4 años hace | 0

Cargar más