photo

Udoi


Last seen: 3년 초과 전 2022년부터 활동

Followers: 0   Following: 0

I am an EDG intern at MathWorks for the summer of the academic year 2022.

Programming Languages:
Python, C++, C, Javascript, MATLAB
Spoken Languages:
English

통계

MATLAB Answers

0 질문
10 답변

순위
10,687
of 300,338

평판
4

참여
0 질문
10 답변

답변 채택
0.00%

획득한 표
2

순위
 of 20,922

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,149

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Write an equation that accepts a vector and calculates output
Please get started with MATLAB Fundamentals first by going throught the tutorials:https://www.mathworks.com/help/matlab/getting-...

3년 초과 전 | 0

답변 있음
Addition, Subtraction, Multiplication & Division of Matrices
The addition of matrices is one of the basic operations that is performed on matrices. Two or more matrices of the same order ca...

3년 초과 전 | 0

답변 있음
area of triangle,u=[5 -5 -2] ; v=[-3 5 -3]; w=[-1 5 1];
We can use heron's formula for the purpose. Area=square root of(s*(s-a)*(s-b)*(s-c)) where s=semi-pereimeter=(a+b+c)/2 where ...

3년 초과 전 | 2

답변 있음
Write a MATLAB code to find the L and U decompostions of a matrix
To decompose a matrix into lower and upper and lower triangular matrices,we can use the following syntax: [LU,P] = step(lu,A) ...

3년 초과 전 | 0

답변 있음
Ask for matlab equations
We can easily take the input from the user using prompt command. After taking the input for x and y we can display the sum and ...

3년 초과 전 | 0

답변 있음
Write a function that prompts the User for a positive integer n
We can use a simple if-else conditional check in MATLAB to implement the scenario described. At first,we take the input value o...

3년 초과 전 | 0

답변 있음
How do I create the following matrices using a for loop
Since the dimensions of each matrix is 5*5,we can easily create the matrices without any for loop. However ,since we are specif...

3년 초과 전 | 0

답변 있음
Summation with FOR Loop
We can calculate the sum using a simple for loop in MATLAB. We take the input value of n from the user. After taking the input...

3년 초과 전 | 0

답변 있음
if-else statement question
We can simulate the whole scenario. At first we must take the input for the name of the customer,his address,his amount of purc...

3년 초과 전 | 0

답변 있음
How do i write that matrix?(with zeros,ones,eye)
The above matrix can be created in a lot of different ways. An interesting observation for the above matrix which we require to...

3년 초과 전 | 0