photo

Muhideen Ogunlowo


Last seen: 대략 2년 전 2023년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

4 질문
0 답변

순위
282,481
of 300,799

평판
0

참여
4 질문
0 답변

답변 채택
25.0%

획득한 표
0

순위
 of 21,092

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 171,134

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


How do I plot the infinite norm of a matrix on a graph?. I should have a square but I end up having a circle
A=[2 0;1 -1]; Matrix A %(Sample Matrix) infnorm=norm(A,inf) %Infinite norm theta=linspace(0,2*pi,601); % Using 601 points x=[...

2년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How do I write out symbolically what this function does in the case n= 5 for the iteration with j = 3, Using ordinary element wise vector and matrix notation
function [L, U] = lufacto(A) % LUFACT LU factorization % Input: % A square matrix % Output: % (L, U) un...

2년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Accepting multiple values for a function. I want my function to accept multiple values for beta
function x = backsub(U,b) %FORWARDSUB Solve a lower triangular linear system %Input: % U = Upper triangular matrix (n by n)...

2년 초과 전 | 답변 수: 1 | 0

1

답변

질문


I have a variance question, however, my code isn't bringing up this in the command window when i try to run it. "Function definition are not supported in this context".
function s2 = samplevar(x) n=length(x); %sample size q=mean(x);% mean of vector for x=2:n s2= sum((x-q)^2)/(n-1); formul...

2년 초과 전 | 답변 수: 1 | 0

1

답변