Risposto
Taylor series for sin(x) doesn't give the right answer above 34 radians
The larger x is, the more cancellation error you are going to get with the intermediate sums. It would be best to reduce the ra...

oltre 5 anni fa | 0

Risposto
code for eulers method help
This needs to be outside of and prior to your loop, and r needs a multiply operator: f=@(y)r*(1-(y/L))*y-((p*y^2)/(q+y^2)); Th...

oltre 5 anni fa | 1

Risposto
minutes to hour and minutes
Make mins a column vector, or use mins(:) in your function handle.

oltre 5 anni fa | 0

Risposto
syntax error using complex loops
Did you mean while c <= 19 For loops should be looping over a fixed number of iterations, not a logical condition. While loop...

oltre 5 anni fa | 0

Risposto
Create Array that reorders given values to have smallest first and largest last while maintaining the rest of the array.
That 2nd loop needs to run in reverse order. You need to bubble that smallest number which might be near the back all the way t...

oltre 5 anni fa | 0

Risposto
Need helping creating and solving for this equation: f(t)=4- t^2 e^(-3t)
Here is a basic outline to get you started: n = 100; % Number of elements t = zeros( you fill this in ); % create an t vector ...

oltre 5 anni fa | 0

Risposto
How can I use a for loop to create new variables?
You might consider automatic array expansion. E.g., look at this result: t = 0:0.01:10; % row a = [0.1 1 3]'; % column y = e...

oltre 5 anni fa | 1

Risposto
Can someone convert this to matlab code?
So, you don't need any loops for this. Just use the automatic array expansion feature. E.g., take a look at what happens with ...

oltre 5 anni fa | 0

Risposto
Two variables need to be connected to one struct variable.
What about something like this: Results.First_Name = first_name{target}; Results.Last_Name = last_name{target}:

oltre 5 anni fa | 0

| accettato

Risposto
How would I write the function of f(x)=sin(x)*exp(-x/10)
The multiply. E.g., f = @(x) sin(x) .* exp(-x/10); You don't need it on the divide because you are dividing by a scalar.

oltre 5 anni fa | 1

Risposto
Error using ^ (line 51) 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 '.^'.
This is often caused by using a matrix or vector in an equation when you thought you were using a scalar. E.g., take these lines...

oltre 5 anni fa | 0

| accettato

Risposto
Reading 64 bit words
Try reading and keeping the type as uint64 (using the *) instead of converting to double: word = fread(fid,1,'*uint64');

oltre 5 anni fa | 0

| accettato

Risposto
mex, error C3861: "mxGetDoubles": Cannot find the identifier, "mxGetUint8s": Cannot find the identifier ?
Those functions are for the R2018a memory model API. For that, you need to add the -R2018a option flag: mex myfile.cpp -R2018a...

oltre 5 anni fa | 2

| accettato

Risposto
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
You are missing an ending parenthesis, and also you probably need to use element-wise multiply: u3 = exp(-0.89*t) .* (1.75*cos(...

oltre 5 anni fa | 0

| accettato

Risposto
Solving a nonlinear ODE
Step 1: Solve your ODE for the highest order derivative, in this case Rdoubledot (on paper) Rdoubledot = stuff (you figure thi...

oltre 5 anni fa | 0

Risposto
Computational Complexity of matrix multiplication
This question is perhaps more involved than it looks on the surface, because by default MATLAB doesn't store the imaginary part ...

oltre 5 anni fa | 0

| accettato

Risposto
error:All functions in a script must be closed with an 'end'.( kindly see the code and help me to remove the error)
Looks like maybe this for iy = 1:H end for ix = 1:W should be just this for iy = 1:H for ix = 1:W Side Note: This would b...

oltre 5 anni fa | 0

Risposto
Using the euler method
p(ip) is the value of p at time t(ip). p isn't a function that you are passing time into like you are doing with p(t(ip)). So ...

oltre 5 anni fa | 0

Risposto
Finding Nonzero Elements in a Vector
You need to wrap this statement with an if-test and only execute it if v(CurrentPosition) is non-zero: prod = prod * v(CurrentP...

oltre 5 anni fa | 0

Risposto
Markov Chain probability steady state
Hint: The probability of moving from one state to another state in n steps is P^n

oltre 5 anni fa | 0

Risposto
Factorial without the Command
You could use either use a loop to multiply all of the numbers from 1 to n, or use recursion to multiply n by the factorial of n...

oltre 5 anni fa | 0

Risposto
Inputs a Vector and Returns the Second Smallest Element
Your algorithm always replaces Smallest and SecondSmallest at each iteration. Does that make sense? E.g., if the current Smalle...

oltre 5 anni fa | 0

Risposto
help w code error
You need to index S: f = -0.5 /(2.1+S(i));

oltre 5 anni fa | 0

Risposto
Hex to float like python struct.unpack()
Could be a Big Endian vs Little Endian thing. E.g., inserting a swapbytes( ) step: >> hex = 'C956F53D' hex = 'C956F53D' ...

oltre 5 anni fa | 0

Risposto
Python to MATLAB accuracy
Probably not. The trailing bits of floating point calculations in general can't be trusted. It you change the order of the calc...

oltre 5 anni fa | 0

| accettato

Risposto
solving coefficient with linear algebra
You basically have this: [ONES_COLUMN, X_COLUMN, Y_COLUMN] * p = DATA You know all the CAPS stuff. So just use the standard l...

oltre 5 anni fa | 0

Risposto
Composite Functions with a function with two ranges
For example, take the first one: (g o f)(x) This is just g(f(x)) which is g(x^2) Assuming we are talking only about real in...

oltre 5 anni fa | 0

Risposto
im trying to create a while loop for random numbers and it says if its even or odd
Change this while times < 20 to this while Ecounter < 20 and change this Ecounter = 0+1; to this ...

oltre 5 anni fa | 0

Risposto
The Body Mass Index, or BMI
Just get rid of these lines: function BMI=findbmi(Weight,Height)

oltre 5 anni fa | 1

Risposto
From where is this exp in syms calculus?
The solution space has multiple values, not just one. The solver has parameterized the solution space for you. There are multi...

oltre 5 anni fa | 0

| accettato

Carica altro