photo

Varshitha Gouri


Last seen: 1 día hace Con actividad desde 2026

Followers: 0   Following: 0

Estadística

All
MATLAB Answers

0 Preguntas
5 Respuestas

Cody

0 Problemas
12 Soluciones

CLASIFICACIÓN
98.645
of 301.984

REPUTACIÓN
0

CONTRIBUCIONES
0 Preguntas
5 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.477

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
36.490
of 177.857

CONTRIBUCIONES
0 Problemas
12 Soluciones

PUNTUACIÓN
130

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Resuelto


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

1 día hace

Resuelto


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

1 día hace

Resuelto


Find the max element of the array
Find the max element of the array

1 día hace

Resuelto


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

1 día hace

Resuelto


calculate the length of matrix
input 1 array, calculate the length

1 día hace

Resuelto


Transpose the Matrix
Transpose the given matrix, e.g. x=[a b;c d] transpose of x = [a c;b d]

1 día hace

Resuelto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

1 día hace

Resuelto


Sum all elements of a vector or matrix without using sum()
Write a function that computes the sum of all elements of the input array v without using the built-in sum function. The input ...

1 día hace

Resuelto


MATLAB 101: Area of a circle
Write a MATLAB function named circle_area that accepts the radius r as an input and returns the area of the circle.

1 día hace

Resuelto


Program an exclusive OR operation with logical operators
Program an exclusive or operation *without* using the MATLAB function xor. Use logical operators like |, &, ~, ... instead. ...

1 día hace

Resuelto


square of a number
find square of a given number

1 día hace

Respondida
How many positive entries in array
function count = positiveEntries(arr) count = sum(arr > 0); end

18 días hace | 0

Respondida
how do i reverse a vector
v = [1 2 3 4 5]; reversed = flip(v); disp(reversed);

18 días hace | 0

Respondida
how to sum all elements of one vector?
v = [1 2 3 4 5]; total = sum(v); disp(total);

18 días hace | 0

Respondida
Write a function to calculate the area of a circle
function area = circleArea(radius) area = pi * radius^2; end

18 días hace | 0

Respondida
Write a MATLAB function that returns the square of a number.
function sqr=sqr(x) sqr=x^2; end

18 días hace | 0