Risposto
How to detect vehicle from a video using MATLAB?
Hi @Kiran Das You can learn to use deep learning for training a vision-based vehicle detector. See a working example here: htt...

circa 4 anni fa | 0

Risposto
How to plug in and solve for algebraic equation?
Hi @Meet Koradia The idea is to reverse the equality in , and then isolate to the left-hand side. You can solve this algebra p...

circa 4 anni fa | 0

Risposto
Help on suitable Simulink Blocks to use
@Williams, this is good. If you have the algorithm, generally, it should simplify things in Simulink. Simulink has a block that...

circa 4 anni fa | 1

| accettato

Risposto
unit step function to MATLAB
Hi @Faisal Al-Wazir Unit Step function defined for negative time? clear all; clc t = -6:0.0001:6; x = 2.5*(sign(t - -0.5) -...

circa 4 anni fa | 1

| accettato

Risposto
applying newton's method
Hi @Romaisa Abdeselam Lazrak You can find the examples related to Newton-Raphson method in this link: https://www.mathworks.co...

circa 4 anni fa | 0

Risposto
How to implement the given equation in MATLAB?
Thanks @chaaru datta. But the data you shared are non-copyable because they are images. You can click the MATLAB code button an...

circa 4 anni fa | 1

| accettato

Risposto
How to write function for SIMULINK model and it's variables
Hi Azin For example only. Explore it. https://www.mathworks.com/help/simulink/slref/matlabfunction.html function [V, tau] = s...

circa 4 anni fa | 0

Risposto
How to see the value of outputs in ANFIS
Hi @redha wassim brahimi You can use this function called evalfis() . This syntax is given below: output = evalfis(fis, input)...

circa 4 anni fa | 1

| accettato

Risposto
Plotting Graph in Matlab
@Vartika Agarwal Suggest a simple solution: t1 = 70:81; t2 = 81:85; t3 = 85:100; plot(t1, t1, 'b', t2, t2, 'b--', t3, t3, '...

circa 4 anni fa | 1

| accettato

Risposto
how to plots these values?
Hi @Rakesh Roshan Hope this helps! % Data S = [-0.0032 -0.0045 -0.0056]; F = [8 9 10]; % creating plots figure(1) plot(...

circa 4 anni fa | 0

Risposto
I want to create sliders for different parameters
Hi @Marco Zanasco Check out uislider if you want to create slider component. The example should be helpful. https://www.mathwo...

circa 4 anni fa | 0

Risposto
Calculate swath area of a satellite
Hi @Andrea Curatolo I don't have Wert's Handbook with me right. But I have found something from the Radar Toolbox that might be...

circa 4 anni fa | 0

Risposto
Input an array to transfer function block in simulink
@ANAND NALE I don't remember that the Transfer Function block works as a MISO system. If you think that all 20 inputs are fed ...

circa 4 anni fa | 0

Risposto
How to plot this equation if C is 4?
@ken Alternatively, you may use fplot for an overview. fplot(@(t) (5*t.^2)./(t.^5 + 4), [-6 6])

circa 4 anni fa | 1

Risposto
how do I make this signal look like a rectangular pulse?
@Kwaku Junior Maybe like this? t = linspace(0, 400, 40001); u1 = heaviside(t - 185); u2 = heaviside(t - 210); u = u1 - u2; ...

circa 4 anni fa | 1

| accettato

Risposto
How to solve matrix in characteristic equation?
Hi @Tianyi Chai This is actually very easy if you know algebra and solving simultaneous equations on the desired characteristic...

circa 4 anni fa | 2

| accettato

Risposto
How to correct the code?
Hi @susan sara Adding these lines should work n = 1; h = repmat({true(n)}, 7, 1); Output = A(logical(blkdiag(h{:}))) Output...

circa 4 anni fa | 2

| accettato

Risposto
How can i fix this error ?
@Do Son Try this: % to formulate ODE syms s t y(t) Y(s) D1y = diff(y); D2y = diff(D1y); Eqn = D2y + 2*D1y == 8*t % to ...

circa 4 anni fa | 2

| accettato

Risposto
performing linear regression fits using cftool based on data points
@Jamie Al Does it look like this? x = [398 292 352 575 568 450 550 408 484 350 503 600 600]; y = [0.15 0.05 0.23 0.43 0.2...

circa 4 anni fa | 1

| accettato

Risposto
How i can solve limit this ODE question .
Looks like the population saturates at 1 million. t = linspace(0, 1500); P = (3000000*exp(t/100))./(997 + 3*exp(t/100)); plot...

circa 4 anni fa | 0

Risposto
Using ode45 to solve 2nd order nonlinear ODE
Hi @Fue Xiong You actually need to formulate the simultaneous problem first function F = simulprob(x) F(1) = sqrt(x(1)^...

circa 4 anni fa | 0

Risposto
how to plot negative frequency in x axis ?
@Belal Ahmed This impulse response can plotted by following the example here: https://www.mathworks.com/help/control/ref/lti.i...

circa 4 anni fa | 1

| accettato

Risposto
How to zoom on a particular portion of the graph?
Hi @SOMNATH MAHATO After the xlim line, enter this: p = get(gca, 'Position'); h = axes('Parent', gcf, 'Position', [p(1)+.06 p...

circa 4 anni fa | 1

| accettato

Risposto
Trouble graphing. My function is not appearing.
Hi @Alex Chen If you want to see the asymptote, perhaps use fplot() instead. https://www.mathworks.com/help/matlab/ref/fplot.h...

circa 4 anni fa | 2

| accettato

Risposto
Please explain this code about differential equations.
@Mr.DDWW The code is annotated now. Hopefully sufficient for you to understand. By the way, I've fixed the plot line because yo...

circa 4 anni fa | 0

Risposto
Help solving differential equations
Hi @Juan Lara Alcaraz Since you have written the code for the differential equations, function dydt = odefcn(t, y) dyd...

circa 4 anni fa | 1

| accettato

Risposto
How can I calculate the value in an equation?
@Ali Deniz Please verify if the nonlinear equation is correct. Looks like there are no real solutions for this one.

circa 4 anni fa | 2

| accettato

Risposto
how to develop brand new optimization algorithm in Matlab like black widow optimization, cuckoo optimization etc.
Hi @harsh Brar If you are into the nature-inspired optimization algorithms, then become an Observer to study the survival, hunt...

circa 4 anni fa | 2

| accettato

Risposto
'step()' and 'tf()' not working on MATLAB 2022?
Hi @Tom Bienas The step() and tf() functions require the Control System Toolbox. You can enter this to determine if the Licen...

circa 4 anni fa | 0

Risposto
I want to change my code to a code like the one in the picture below, but how can I modify it?
Hi @EonYak Kang Looks like a signal modulation problem in Communications Engineering. If my guess is correct, then is the Mod...

circa 4 anni fa | 1

Carica altro