help me pls, I want to plot
1 回表示 (過去 30 日間)
古いコメントを表示
plot U_n = c*k^n for different ranges of k, namely, -1<=k<=1
2 件のコメント
Luca Ferro
2023 年 2 月 13 日
編集済み: Luca Ferro
2023 年 2 月 13 日
what are the values of c and n?
And whats the step length of k?
回答 (1 件)
Image Analyst
2023 年 2 月 13 日
c = 1;
n = 3;
k = linspace(-1, 1, 500);
U_n = c * k .^ n;
plot(k, U_n, '-', 'LineWidth', 2);
grid on
xlabel('k');
ylabel('U_n', 'Interpreter', 'none');
To learn other fundamental concepts, invest 2 hours of your time here:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!