pllllllllllllZzz ..... I need it today ;(

1 回表示 (過去 30 日間)
mon mon
mon mon 2011 年 10 月 26 日
*Hi evry body :)
can U help me to answer qustion num(c)? I don't Know how can i answer it :( PlZz help me =,(*
Exercise 2:
(a) Write an m-file named cosmx.m (“COS Minus X”) that defines the function:
(x) = cos x - x
Recall that a function m-file is one that starts with the word function. In this case it should start off as
function y = cosmx ( x )
% y = cosmx(x) computes the difference y=cos(x)-x
% your name and the date
y = ???
(This is very simple(the object of this exercise is to get going.)
(b) Now use your cosmx function to compute cosmx(1). Your result should be about -0.4597.
(c) Now use your cosmx function in the same plot sequence as above to plot cosmx and the horizontal axis on the interval -π < x < π. Hint: The horizontal axis is the line y = 0.
  4 件のコメント
Daniel Shub
Daniel Shub 2011 年 10 月 26 日
Great, so show us the function and then show us what you have done for part c.
mon mon
mon mon 2011 年 10 月 26 日
a)
function y = cosmx ( x )
%y = cosmx(x) computes the difference y=cos(x)-x
% Name & Date
y =cos(x)-x;
end
b) in command window :
cosmx(1)
and it give me the correct result -0.4597

サインインしてコメントする。

採用された回答

mon mon
mon mon 2011 年 10 月 26 日
plZz help me =,(
  2 件のコメント
Image Analyst
Image Analyst 2011 年 10 月 26 日
How generous of you to accept your own "answer" instead of someone else who helped you.
Daniel Shub
Daniel Shub 2011 年 10 月 26 日
I think he may have accepted his answer prior to getting any help (with the possible exception of Amardeep's answer). It was accepted before I got involved.

サインインしてコメントする。

その他の回答 (4 件)

Daniel Shub
Daniel Shub 2011 年 10 月 26 日
ohhh, I know the answer ...
function y = cosmx ( x )
% y = cosmx(x) computes the difference y=cos(x)-x
% your name and the date
y = randn(size(x));
y(x == 1) = -0.4597;
  3 件のコメント
mon mon
mon mon 2011 年 10 月 26 日
Thanks Daniel ,
But it give me an Error ,too. =(
Daniel Shub
Daniel Shub 2011 年 10 月 26 日
@mon mon, you are right, I made a mistake. It should work now.

サインインしてコメントする。


Amardeep
Amardeep 2011 年 10 月 26 日
Create a function which calls cosmx which should look something like. I have left out the plotting functions and the variable arraying to create plottable data.
x = -pi
while x=< pi
y=cosmx(x)
x=x+0.01 (or whatever division resolution you want along the x axis)
end
That should be more than enough to get you along the right lines for part c.
  2 件のコメント
mon mon
mon mon 2011 年 10 月 26 日
thanXx Amardeep =)
but it give me ERROR =(
Sean de Wolski
Sean de Wolski 2011 年 10 月 26 日
<=

サインインしてコメントする。


mon mon
mon mon 2011 年 10 月 26 日
my Answer in part (a)
function y = cosmx ( x )
%y = cosmx(x) computes the difference y=cos(x)-x
% Name & Date
y =cos(x)-x;
end
Then part (b) I wrote in command window cosmx(1)
It give me correct >>>> -0.4597
but I do not know part(c) =(
  2 件のコメント
Daniel Shub
Daniel Shub 2011 年 10 月 26 日
If I asked you to evaluate cosmx at -pi, 0, and pi, how would you do that. What about if I asked you to evaluate cosmx between -pi and pi with steps of 0.01. Do you know how to plot anything?
try
doc plot
mon mon
mon mon 2011 年 10 月 26 日
Daniel
Thank U very much .. =)
I do it .. <3

サインインしてコメントする。


mon mon
mon mon 2011 年 10 月 26 日
Thanks All .. =)
  2 件のコメント
Walter Roberson
Walter Roberson 2011 年 10 月 26 日
Is the question finished?
mon mon
mon mon 2011 年 10 月 26 日
YyaP =)

サインインしてコメントする。

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by