plotting functions from book
6 ビュー (過去 30 日間)
古いコメントを表示
hi i'm trying to plot this function and get the same result from the book
the function:


the plot in the book; 

this is my code
i need to find a way to make the plot smother
c=1
for k=1.2:0.4:2.8
u=linspace(0,2.8,5)
u1=0:0.01:2,4
f=(k/c).*(u/c).^(k-1).*exp(-(u/c).^(k))
plot(u,f)
hold on
end
0 件のコメント
採用された回答
Torsten
2022 年 10 月 1 日
編集済み: Torsten
2022 年 10 月 1 日
c = 1;
k = 1.2:0.4:2.8;
u = (linspace(0,2.4,100)).';
f = (k/c).*(u/c).^(k-1).*exp(-(u/c).^(k));
plot(u,f)
2 件のコメント
Ethan McDonald
2022 年 10 月 1 日
I believe Torsten's solutions solves your issue, but I wanted to comment to let you know you should avoid using for-loops when possible. Matlab is much quicker at processing vectos and matrices, and in many case, you can take advantage of GPU computing for large amounts of data.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

