Frage


How to plot points on a line
Say I have a random sequence of such as new=randn(5,1) which produces y values of ans = -0.9118 0.0494 1.0780 ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Changing a for loop to recursion
Just wondering if I could get a bit of help on this. How would I change this code to remove the for loop so it operates recursiv...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to add values from if statements to a column
say I have function [x,y]=valuesof(data) input= data; t=length(data); for z=2:t if input(z-1)>input(z) && input (z)<...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Plotting infinite series on interval
I have the following function for error approximation function y = Approx(x,N); Approx=zeros(1,length(x)); for n=0:N Ap...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Series expansion: looping over different inputs
Say I have the approximation My question asks that I create two functions to calculate this approximation for an interval of x-...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Error approximation as a function
I have this error approximation and I am trying to create two functions. One which loops over the values and the second which...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


using a function to answer new questions
I have created function y=Gss(n); a=3; b=0.2; N(1)=0.2; for v=2:n+1 N(v)=exp(-a*N(v-1)^2)+b; end y=N(v);...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Help with Padovan Sequence
I have a question that says P(0)=P(1)=P(2)=1 , P(n)=P(n-2)+P(n-3) use for loops to get a script for p(n) I have written fun...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort