photo

Udoi


Last seen: más de 3 años hace Con actividad desde 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

Estadística

MATLAB Answers

0 Preguntas
10 Respuestas

CLASIFICACIÓN
11.555
of 300.765

REPUTACIÓN
4

CONTRIBUCIONES
0 Preguntas
10 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
 of 21.084

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 170.941

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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-...

más de 3 años hace | 0

Respondida
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...

más de 3 años hace | 0

Respondida
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 ...

más de 3 años hace | 2

Respondida
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) ...

más de 3 años hace | 0

Respondida
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 ...

más de 3 años hace | 0

Respondida
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...

más de 3 años hace | 0

Respondida
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...

más de 3 años hace | 0

Respondida
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...

más de 3 años hace | 0

Respondida
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...

más de 3 años hace | 0

Respondida
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...

más de 3 años hace | 0