![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/16058329_1567024901787_DEF.jpg)
Emily Gallagher
2019 年からアクティブ
Followers: 0 Following: 0
統計
MATLAB Answers
13 質問
0 回答
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
Ralston's method function
I am trying to write a function for Ralston's method, a second order Runge Kutta method. My function does not appear to be graph...
約5年 前 | 1 件の回答 | 0
1
回答質問
How to write your own function for infinity-norm of a matrix
How do I write a function for infinity-norm of some matrix without using the built-in Matlab function? I do not know how to comp...
5年以上 前 | 1 件の回答 | 0
1
回答質問
Writing my own function to find one-norm
I am trying to write a function called normone that accepts a rectangular matric as a parameter and calculates the one-norm. I k...
5年以上 前 | 1 件の回答 | 0
1
回答質問
Computing determinant of matrix A using LU factorization
I must compute the determinant of an nxn matrix A using LU factorization. I have already calculated L and U in a different 'lufa...
5年以上 前 | 1 件の回答 | 0
1
回答質問
'Array indices must be positive integers or logical values' error
I keep getting the 'Array indices must be positive integers or logical values' error specifically n=f(i). f = (2000:100:3000...
5年以上 前 | 1 件の回答 | 0
1
回答質問
Trying to write a function for the inverse of a matrix.
Trying to solve for the inverse of matrix A. Any help would be greatly appreciated. function X = inverse(A) n = length(A); ...
5年以上 前 | 1 件の回答 | 0
1
回答質問
I am trying to solve the inverse of a matrix A, using the equation AX=I and LU factorization. My lufact function worked originally, but when using to compute the inverse, A and X both end up as identity matrices.
I am trying to solve the inverse of a matrix A, using the equation AX=I and LU factorization. My lufact function worked original...
5年以上 前 | 0 件の回答 | 0
0
回答質問
Why do I keep getting an undefined function for 'deter'?
Trying to find the determinant of an upper triangular matrix without using the built-in det function. Why do I keep getting an u...
5年以上 前 | 1 件の回答 | 0
1
回答質問
Given an nxn matrix A, how do I produce a lower triangular matrix with ones on the diagonal?
Given an nxn matrix A, how do I produce a lower triangular matrix with ones on the diagonal? I tried A = rand(n,n); L = tril...
5年以上 前 | 1 件の回答 | 0
1
回答質問
How to use the lufact function to compute the determinant of some matrix A without using the built-in determinant function. Any help would be greatly appreciated.
How to use the lufact function to compute the determinant of some matrix A without using the built-in determinant function. Any ...
5年以上 前 | 1 件の回答 | 0
1
回答質問
I am trying to solve for an integral using the relation y(n)=ny(n-1)-(1/e) and that y(1)=1-(2/e). Below is my function but I am not sure what to do about the 'y(n-1)' part.
I am trying to solve for an integral using the relation y(n)=ny(n-1)-(1/e) and that y(1)=1-(2/e). Below is my function but I am ...
5年以上 前 | 1 件の回答 | 0
1
回答質問
Subplots with multiple axes
I am trying to plot a figure with four subplots. This is what I am entering but it is only producing one graph. Any advice? n...
5年以上 前 | 1 件の回答 | 0