Please help me write the f function in matlab

2 Kommentare

Yes, I got to f=2.*x.*sin(6.*pi.*x+exp(2.*x.*cos(6.*pi.*x.))); but something is wrong and I can't quite put my finger on it

Antworten (2)

KSSV
KSSV am 7 Okt. 2020

0 Stimmen

  1. Read about sin, cos
  2. Read about exp.
  3. Read about linspace.
Example: If I want to write a function for sin(pi*x)
m = 100 ;
x = linspace(0,2,m) ;
y = sin(pi*x) ;
plot(x,y)

2 Kommentare

I got to f=2.*x.*sin(6.*pi.*x+exp(2.*x.*cos(6.*pi.*x.))); but something is wrong, I don't know what
Show us the whole code which you tried....so that we cna help you.
m = 100 ; % give your value
x = linspace(0,1,m) ; % give your range for x
f=2*x.*sin(6*pi*x+exp(2*x.*cos(6.*pi*x)));
plot(x,f)
In your line..you have used x. this is not correct. You need not to use pi.*..as pi is only a single number.
James Tursa
James Tursa am 7 Okt. 2020
Bearbeitet: James Tursa am 7 Okt. 2020

0 Stimmen

I would assume from the equation image that the exp( ) stuff maybe should be outside of the sin( ) stuff. E.g.,
f = 2.*x.*sin(6.*pi.*x) + exp(2.*x.*cos(6.*pi.*x));

Diese Frage ist geschlossen.

Gefragt:

am 7 Okt. 2020

Geschlossen:

am 20 Aug. 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by