photo

Varshitha Gouri


Last seen: environ un mois il y a Actif depuis 2026

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
5 Réponses

Cody

0 Problèmes
24 Solutions

RANG
42 180
of 302 138

RÉPUTATION
0

CONTRIBUTIONS
0 Questions
5 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 21 570

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
22 226
of 179 363

CONTRIBUTIONS
0 Problèmes
24 Solutions

SCORE
260

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

A résolu


Calculate BMI
Given a matrix hw (height and weight) with two columns, calculate BMI using these formulas: 1 kilogram = 2.2 pounds 1 inch = 2...

environ un mois il y a

A résolu


Response of First Order Control Systems
In practice, the input signal to an automatic control system is not known ahead of time but usually random in nature. Thus, in t...

environ un mois il y a

A résolu


Find the Best Hotels
Given three input variables: hotels - a list of hotel names ratings - their ratings in a city cutoff - the rating at which yo...

environ un mois il y a

A résolu


Efficiency of a single phase Transformer
Calculate the efficiency of a single phase transformer whose KVA rating is A KVA, loading factor x,power factor p,full load copp...

environ un mois il y a

A résolu


MATLAB 101: Wye to Delta Impedance Converter
n electrical network analysis, transforming a Wye (Y) configuration of impedances (Z1, Z2, Z3) into an equivalent Delta (Delta) ...

environ un mois il y a

A résolu


Nodal Voltage of Resistor Ladder Network
* You have a bunch (an even number N) of identical resistors (each R ohms), a good battery (V volts) and a high impedance voltme...

environ un mois il y a

A résolu


Inductor Energy Storage Calculation
The energy (EEE) stored in an inductor is given by the formula: Where: E is the energy in joules (J) L is the inductance in...

environ 2 mois il y a

A résolu


Calculate Parallel Resistance
Three resistors connected in parallel have resistances R1, R 2, and R 3, respectively. Return the total resistance R total of ...

environ 2 mois il y a

A résolu


Resistance in a circuit
Two resistors with values of 6.0 ohms and 12 ohms are connected in parallel. This combination is connected in series with a 4 o...

environ 2 mois il y a

A résolu


Find out sum and carry of Binary adder
Find out sum and carry of a binary adder if previous carry is given with two bits (x and y) for addition. Examples Previo...

environ 2 mois il y a

A résolu


Convert from Base 10 to base 5
Convert the input number from base 10 into base 5: for example: if a(in base 10)= 5 then a(in base 5)= 10

environ 2 mois il y a

A résolu


Convert Hexavigesimal to Decimal
NASA (Ned’s Alien-Spying Agency) have made contact with a 13-fingered race from the planet Genai. Naturally, Ned’s shadowy opera...

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


Write a function to generate AND operation

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


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]

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

A résolu


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.

environ 2 mois il y a

A résolu


square of a number
find square of a given number

environ 2 mois il y a

Réponse apportée
How many positive entries in array
function count = positiveEntries(arr) count = sum(arr > 0); end

2 mois il y a | 0

Réponse apportée
how do i reverse a vector
v = [1 2 3 4 5]; reversed = flip(v); disp(reversed);

2 mois il y a | 0

Réponse apportée
how to sum all elements of one vector?
v = [1 2 3 4 5]; total = sum(v); disp(total);

2 mois il y a | 0

Réponse apportée
Write a function to calculate the area of a circle
function area = circleArea(radius) area = pi * radius^2; end

2 mois il y a | 0

Réponse apportée
Write a MATLAB function that returns the square of a number.
function sqr=sqr(x) sqr=x^2; end

2 mois il y a | 0