A répondu
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)...

presque 3 ans il y a | 0

| A accepté

A répondu
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)

presque 3 ans il y a | 0

A répondu
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...

environ 3 ans il y a | 0

A répondu
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 ...

environ 3 ans il y a | 0

A résolu


Mass Conversion 2

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


Temperature Conversion 3

environ 3 ans il y a

A résolu


Temperature Conversion 2

environ 3 ans il y a

A résolu


Temperature Conversion 1

environ 3 ans il y a

A résolu


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...

plus de 3 ans il y a

A résolu


Total energy

plus de 3 ans il y a

A résolu


Potential energy calculation

plus de 3 ans il y a

A résolu


Kinetic energy calculation

plus de 3 ans il y a

A résolu


Laws of motion 7

plus de 3 ans il y a

A résolu


Laws of motion 6

plus de 3 ans il y a

A résolu


Laws of motion 5

plus de 3 ans il y a

A résolu


Laws of motion 4

plus de 3 ans il y a

A résolu


Laws of motion 3

plus de 3 ans il y a

A résolu


Laws of motion 2

plus de 3 ans il y a

A résolu


Laws of motion 1

plus de 3 ans il y a

A répondu
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...

plus de 3 ans il y a | 0

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

plus de 3 ans il y a | 0

A répondu
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)

plus de 3 ans il y a | 0

A répondu
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...

plus de 3 ans il y a | 0

A répondu
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;...

plus de 3 ans il y a | 0

| A accepté

A répondu
How do I resolve this stability criterion question?

plus de 3 ans il y a | 0

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

plus de 3 ans il y a | 0

| A accepté

A répondu
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(...

plus de 3 ans il y a | 0

| A accepté

A répondu
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)));

plus de 3 ans il y a | 0

| A accepté

Charger plus