답변 있음
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 ?...

대략 5년 전 | 2

| 수락됨

답변 있음
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...

대략 5년 전 | 1

| 수락됨

답변 있음
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...

대략 5년 전 | 0

| 수락됨

답변 있음
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...

대략 5년 전 | 0

| 수락됨

답변 있음
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...

대략 5년 전 | 0

답변 있음
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...

대략 5년 전 | 0

| 수락됨

답변 있음
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...

대략 5년 전 | 3

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 0

| 수락됨

답변 있음
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 ...

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 0

| 수락됨

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

| 수락됨

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

| 수락됨

답변 있음
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) ...

5년 초과 전 | 1

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 1

| 수락됨

답변 있음
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=...

5년 초과 전 | 1

| 수락됨

답변 있음
Plotting for specific values
plot(node,U(:,t==0.25),node,U(t==0.5)) % and so on

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 1

답변 있음
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

5년 초과 전 | 0

| 수락됨

답변 있음
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) ...

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 1

더 보기