Adomas Bazinys - MATLAB Central
photo

Adomas Bazinys


2018 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 02/18 to 04/25Use left and right arrows to move selectionFrom 02/18Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

6 質問
0 回答

ランク
18,557
of 298,204

評判
2

コントリビューション
6 質問
0 回答

回答採用率
33.33%

獲得投票数
1

ランク
 of 20,548

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 160,571

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


Simpson's rule implementation
function I = simpsons() f=@(x) (3+x.^1/2); a = 1; b = 6; n = 20; disp('n I h') d...

7年弱 前 | 1 件の回答 | 0

1

回答

質問


Change code so that it would generate numbers instead of typing them by user(Gauss method)
function C = Gauss1(A,B) A = [ 8 2 5; 1 5 6; 4 5 6] B = [-1; 4; 5] i = 1; X = [ A B ]; [ nX mX ...

約7年 前 | 1 件の回答 | 0

1

回答

質問


Bisection method add iteration table into my code
function m = bisection(f, low, high, tol) disp('Bisection Method'); % Evaluate both ends of the interval y1 = feval...

約7年 前 | 1 件の回答 | 0

1

回答

質問


MATLAB CODE NEWTON METHOD
f = @(x) exp(x)-3*x; fp = @(x) exp(x)-3; x0 = 1; N = 10; tol = 1E-10; x(1) = x0; % Set initial guess n = 2...

約7年 前 | 5 件の回答 | 1

5

回答

質問


Need to solve e^x=3*x in tho ways
I need to find an interval, wherein is one solution of given equation. I need to solve equation e^x = 3*x in two ways: using Bis...

約7年 前 | 1 件の回答 | 0

1

回答

質問


f(x) = e^x-3x matlab code
I want to write a matlab script that finds solutions of function f(x) = e^x - 3x. I tried to write some code. My matlab code sho...

約7年 前 | 3 件の回答 | 0

3

回答