How i can solve this exercise in matlab???To calculate the values of the function on the given segment In N points to equal intervals from each other. Point 7
2 ビュー (過去 30 日間)
古いコメントを表示
回答 (1 件)
Image Analyst
2020 年 9 月 9 日
Try this:
x = linspace(-pi, pi, n);
y = exp(x) .* sin(x) + exp(-x) .* cos(x);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!