フィルターのクリア

MATLAB graph editing in the figure window

7 ビュー (過去 30 日間)
Leon Phung
Leon Phung 2018 年 9 月 26 日
コメント済み: Leon Phung 2018 年 9 月 26 日
A professor of mine wants the class to turn the homework that has a graph. The guy shows the class how to do once last month and refuses to repeat it. He wants the graph with a thickness of 3, a white circle at the root (where Y=0) as I recall he draw a circle then scale down, and an arrow pointing at the root (along with its name).
The first picture is my graph, the second picture is what it supposed to look like(format).

採用された回答

Bish Erbas
Bish Erbas 2018 年 9 月 26 日
編集済み: Bish Erbas 2018 年 9 月 26 日
Try this (I am leaving some details for you to discover like text on graph and axes labels):
% Definition
x = 0:0.1:10;
f = @(x) (x.*cos(x)+1);
% Find roots
r1 = fzero(f,2);
r2 = fzero(f,4);
r3 = fzero(f,8);
% Plot
plot(x,f(x),'LineWidth',3);
grid on;
hold on;
scatter([r1 r2 r3],[f(r1) f(r2) f(r3)],150,'MarkerEdgeColor',[0 0 0],'MarkerFaceColor',[1 1 1],'LineWidth',1);
hold off;
  3 件のコメント
Bish Erbas
Bish Erbas 2018 年 9 月 26 日
編集済み: Bish Erbas 2018 年 9 月 26 日
Leon Phung
Leon Phung 2018 年 9 月 26 日
got it, thank you! :)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpecifying Target for Graphics Output についてさらに検索

タグ

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by