Beantwortet
How to get Taylor polynomial for functions?
You can use a function that is in the MAThWORKS fileexchange (I put the link): str=input('Function? ','s'); %tray with: cos(x)...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
Change the sign of a Vector over N intervals
Use something like this: Y=rand(1,20); d=[1:4,8:12,17:20]; Y(d)=-Y(d)

fast 3 Jahre vor | 0

Beantwortet
For loop only outputting the final value.
Try using something like this: t=linspace(0,3*pi,100) t=linspace(0,3*pi,100); for k=1:length(t) y = q2(t(k)); val...

etwa 3 Jahre vor | 0

Beantwortet
Plotting log x and y
Why don't you treat like this: n = 30; x = 0.5; h(1) = 1; emin = 1; for i =1:n if i==1 h(1)=0.5; else ...

etwa 3 Jahre vor | 0

Gelöst


Mass Conversion 2

etwa 3 Jahre vor

Gelöst


Calculate the answer to life the universe and everything
<https://en.wikipedia.org/wiki/42_(number)>

etwa 3 Jahre vor

Gelöst


How many hours are there in a day in Italy?
Remember "European Summer Time"

etwa 3 Jahre vor

Gelöst


Temperature Conversion 3

etwa 3 Jahre vor

Gelöst


Temperature Conversion 2

etwa 3 Jahre vor

Gelöst


Temperature Conversion 1

etwa 3 Jahre vor

Gelöst


Simpsons's rule (but not Homer Simpson)
I wonder what Homer Simpson would have thought of Simpson's rule? Somehow I doubt his thoughts would have included the phrase Ne...

mehr als 3 Jahre vor

Gelöst


Total energy

mehr als 3 Jahre vor

Gelöst


Potential energy calculation

mehr als 3 Jahre vor

Gelöst


Kinetic energy calculation

mehr als 3 Jahre vor

Gelöst


Laws of motion 7

mehr als 3 Jahre vor

Gelöst


Laws of motion 6

mehr als 3 Jahre vor

Gelöst


Laws of motion 5

mehr als 3 Jahre vor

Gelöst


Laws of motion 4

mehr als 3 Jahre vor

Gelöst


Laws of motion 3

mehr als 3 Jahre vor

Gelöst


Laws of motion 2

mehr als 3 Jahre vor

Gelöst


Laws of motion 1

mehr als 3 Jahre vor

Beantwortet
How can i draw the graph of this two functions using matlab
when i have this like problem i use this code: t=linspace(0,2*pi,50); f=((t>0)&(t<=1)).*2+((t>1)&(t<=pi/2)).*0.5.*t.^2+((t>pi...

mehr als 3 Jahre vor | 0

Beantwortet
Finding the length of square function
t2=t(find(diff(X)>0)); t1=t(find(diff(X)<0)); long_time=t2(2)-t1(2)

mehr als 3 Jahre vor | 0

Beantwortet
How to create a sine wave with variable frequency - Simulink
something like this: (?) t=linspace(0,2*pi,100); f=rand(1,100); y=sin(f.*t); plot(t,y)

mehr als 3 Jahre vor | 0

Beantwortet
Euler method returning error
maybe you need copy the function eulsys.m in your system. In this link you have a copy: http://macs.citadel.edu/chenm/344.dir/0...

mehr als 3 Jahre vor | 0

Beantwortet
how do i plot only certain part of cepstrum
KSSV ks suggests that you work with the index, here I show you an example of what KSSV mentions, x=linspace(0,10,100); y=x.^2;...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How do I resolve this stability criterion question?

mehr als 3 Jahre vor | 0

Beantwortet
creating multiple values of the same x,y,z
x=[ 2, 4, 2]; repmat(x,10,1)

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
no data plots on graph (plot (x,y))
David is correct. Why don't you try something like that in your code... d(1) = 32000; H = 8000; Re = 6370000; %c2 = 0.5*exp(...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Invalid syntax error with a simple code
tray this x = [-2 -1.5 -1 -0.5 0 0.5 1 1.5 2]; y = (x+x.*(sqrt(x+3))).*(1+2*(x.^(2)));

mehr als 3 Jahre vor | 0

| akzeptiert

Mehr laden