統計
MATLAB Answers
5 質問
0 回答
ランク
of 178,716
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
How would I use a while loop to get a certain amount of inputs from a described interval?
The problem asks for inputs for 3 constants (a,b,c) and an x value to output y depending on the value of x. bascially there's...
8年弱 前 | 1 件の回答 | 0
1
回答質問
How would I find the roots of given function y=x^4-x-4
Problem Description: Write a code that will find the roots (or zeroes) of a given function by using the Newton-Raphson method...
8年弱 前 | 1 件の回答 | 0
1
回答質問
How could I write a script which iterates from 1 to 9 and performs the following operation?
Problem description: The script should iterate from 1 to 9 to produce the expressions on the left, perform the specified oper...
8年弱 前 | 1 件の回答 | 0
1
回答質問
How do I create and call a function which returns the sum of the series (2n)*r^(2n+1), prompting the user for values r and n?
Problem description: Write a script in which you input a real number r and a positive integer n. Call the function funser, wh...
8年弱 前 | 1 件の回答 | 0
1
回答質問
how do I plot cos^2(2x) for x values between 0 and pi/2? specifically a figure with 25 points and a figure with 50
figure(1); x=linspace(0, rad2deg(pi/2), 25); y=(cosd*(2.*x)).^2; plot(x, y) this is my attempt for the first figure and I ...
8年弱 前 | 2 件の回答 | 0
