Risposto
Find group number from a range of data that is not fixed
Are your groups always as you show in your example? That is, group 1 = 1,2,..8 group 2 = 9, 10,..16, group 3 = 17,18, ...24 ?...

oltre 5 anni fa | 2

| accettato

Risposto
How to design a charging and discharging circuit for my supercapacitor using only Simulink blocks without the simpowersystems
In general to model charging a capacitor in Simulink I would think about it this way. Go back to fundamentals The voltage on a...

oltre 5 anni fa | 1

| accettato

Risposto
How to define Estimated Correlation Formula on MATLAB?
You are convolving y with itself and u with itself. You should be able to do this using the MATLAB conv function. You should al...

oltre 5 anni fa | 0

| accettato

Risposto
Calculation of a given area using the trapz
You need to limit the range of x and y that are fed to trapz, you could do something like this, assuming your original variables...

oltre 5 anni fa | 0

| accettato

Risposto
How to plot e^(-2n)
Assign a vector of equally space values over the range of interest to the variable n Assign a value y to a MATLAB expression th...

oltre 5 anni fa | 0

Risposto
Incorrect dimensions for raising a matrix to a power. Check that the matrix is square and the power is a scalar. To perform elementwise matrix powers, use '.^'.
You need to use .^ for all of your powers. Also ./ for your divide, like this clear clc wn = 150; w = 3.142; wb = 0.50; re...

oltre 5 anni fa | 0

| accettato

Risposto
Undefined function 'xline' for input arguments of type 'double'.
Is it possible that the university computer is running an outdated version of MATLAB? According to the documentation xline was i...

oltre 5 anni fa | 3

| accettato

Risposto
why is my plot plotting blank?
The reason your plot is blank is because all of your y values are infinite. They are infinite because Cd is zero for all of your...

oltre 5 anni fa | 0

Risposto
Numeric integration with Trapezoidal and Simpson's rule
You may have other problems too, but it looks like you clear all of your variables right after you just defined your limits and ...

oltre 5 anni fa | 0

Risposto
this is the code that i want to run, but got problem Undefined function or variable 'QFix'
You need to make sure that the directory where the file QFix.m is located is put onto the MATLAB path. Click the Set Path icon ...

oltre 5 anni fa | 0

| accettato

Risposto
How to stop the for loop once the right input is given. Cannot use break.
You could loop with a while statement instead. Set the exit condition on the while statement to be that the answer was wrong or ...

oltre 5 anni fa | 0

| accettato

Risposto
finding value of matrix in an if statement
I'm not sure exactly what you are trying to do, but I will try to explain what your statement is doing and why it might not be w...

oltre 5 anni fa | 0

Risposto
Incorrect Intersection Output of Two Lines
The main difficulty here is comparing Klaus and Hans heights at simultaneous times. Note that the elements of xh and xk are not ...

oltre 5 anni fa | 0

Risposto
Only getting zero as my output for ode45
The "problem" is that x0 = 0 is an equilibrium point of your system dx/dt = 0 when x = 0. So if you start the system at x0 = 0 ...

oltre 5 anni fa | 0

Risposto
Defining ODE function as function file
Looking briefly at your function definitions, it seems that maybe you are misunderstanding what this function is to compute. It ...

oltre 5 anni fa | 0

| accettato

Risposto
Transfer function to low or high pass
One way would be to make a Bode plot of the frequency response and determine does it gain go to zero at high frequencies or low ...

oltre 5 anni fa | 0

Risposto
How do I get a loop to calculate for each value of a formula, not just the last n of the input(N)?
You must provide an array to hold your output force. You keep overwriting it with each loop iteration So, depending upon what y...

oltre 5 anni fa | 0

| accettato

Risposto
How do I vectorize a nested for loop with different sized steps?
I think you may be able to utilize the filter2 function for this purpose. For example A = [1 2 3 4;5 6 7 8;9 10 11 12;13 14 15 ...

oltre 5 anni fa | 0

Risposto
Trying to find a minimum value
You may have some additional problems but one is that you reset wb to zero with every loop iteration, first line in your loop is...

oltre 5 anni fa | 0

| accettato

Risposto
Plotting sequences over intervals
You could do it like this n = -10:10 x = zeros(length(n),1) % preallocate array of zeros to hold result for k = 1:length(n) ...

oltre 5 anni fa | 1

| accettato

Risposto
Index in position 2 exceeds array bounds (must not exceed 1). Error in dlmread (line 159) result= result(:,1:ncols);
You may have other problems too, but I noticed that since i does not change inside of your loop, you always read from the same s...

oltre 5 anni fa | 0

Risposto
optimising variables that are dependent on other variables
If you have the optimization toolbox then you can use fmincon to solve this type of problem. https://www.mathworks.com/help/opti...

oltre 5 anni fa | 1

| accettato

Risposto
Why is my plot not showing?
You need to use ./ Other wise you end up with just one value for f,g, and h x=linspace(-2,2,100); f=(3*x)./(9*x.^2+1) % ./ g=...

oltre 5 anni fa | 1

| accettato

Risposto
Plotting for specific values
plot(node,U(:,t==0.25),node,U(t==0.5)) % and so on

oltre 5 anni fa | 0

| accettato

Risposto
Problem using polyfit with NaN data
To avoid having NaN in polyfit I would use iFit = isfinite(Strain) c = polyfit(Strain(iFit),Load(iFit)) % ok to have NaN w...

oltre 5 anni fa | 0

| accettato

Risposto
Solve as Optimization Problem in Matlab
I think you can use the MILP mixed integer linear programming functionality if you have the optimization toolbox https://www.ma...

oltre 5 anni fa | 0

Risposto
Plot / Solve system for nontrivial answer. dot operator issue?
I don't have the symbolic toolbox, but you can also solve this type of problem using fzero You need to write a little function ...

oltre 5 anni fa | 1

Risposto
Using an external script/function in simulink "matlab function block"
Will the 1-D interpolation block do what you need? https://www.mathworks.com/help/simulink/slref/1dlookuptable.html

oltre 5 anni fa | 0

| accettato

Risposto
My code taking too much time
You can operate on the entire vector using for example a(a<1) = randn So you could make a loop something like while any(a<1) ...

oltre 5 anni fa | 0

| accettato

Risposto
How to perform xor operation on an three input binary bits.
The MATLAB function xor takes two input arguments and and provides and xor between the elements of each argument. So for exampl...

oltre 5 anni fa | 1

Carica altro