Resuelto


vectors counting by 5
Create a vector with numbers from x_min to x_max in increments of 5.

alrededor de 1 año hace

Resuelto


Make an identity matrix whose diagonal elements are 1:n
For a given input n, make an n by n identity matrix that contains the elements 1:n along its diagonal. For example, if input=5: ...

alrededor de 1 año hace

Resuelto


Where is the number that you want to find?
For a given matrix A, find where the input number x appears. Do this task by returning the vector which contains the row and th...

alrededor de 1 año hace

Resuelto


wipe out!
make all the elements in given x zero.

alrededor de 1 año hace

Resuelto


determine if
determine if the elements of a matrix is a nan and return true

alrededor de 1 año hace

Resuelto


find the 'M'
for an input x, return 1 at the location of the letter 'M'

alrededor de 1 año hace

Resuelto


Sum the rows
Sum the rows of the given matrix. Example x = [ 1 2 3 4 ] y = [ 3 7 ]

alrededor de 1 año hace

Resuelto


num10
123456

alrededor de 1 año hace

Resuelto


num6
num

alrededor de 1 año hace

Resuelto


num4
nmjhg

alrededor de 1 año hace

Resuelto


num7
num

alrededor de 1 año hace

Resuelto


num9
num

alrededor de 1 año hace

Resuelto


num5
num

alrededor de 1 año hace

Resuelto


num8
num

alrededor de 1 año hace

Resuelto


num3
nam

alrededor de 1 año hace

Resuelto


num
num

alrededor de 1 año hace

Resuelto


nam2
nam

alrededor de 1 año hace

Resuelto


Remove Adjacent Pairs
Given an array of integers where adjacent elements may be identical, your task is to remove these adjacent pairs. If removing on...

más de 1 año hace

Resuelto


Estimating Battery Lifetime Based on Load Profile and Depth of Discharge (DoD)
In a Battery Management System (BMS), the lifetime of a battery depends on various factors, including the Depth of Discharge (Do...

más de 1 año hace

Resuelto


Estimating the Range of an Electric Vehicle (EV)
In Electric Vehicles (EVs), the driving range is the estimated distance a vehicle can travel on a fully charged battery. The ran...

más de 1 año hace

Resuelto


Estimating Battery Backup Time for an Inverter
In a Battery Management System (BMS), estimating the backup time of a battery-powered inverter helps determine how long it can s...

más de 1 año hace

Resuelto


Battery Charge Rate Calculation
In a Battery Management System (BMS), the charge rate (​) of a battery can be calculated using the formula: ​​ where: ​ is th...

más de 1 año hace

Resuelto


Battery State of Health (SoH) Calculation
In a Battery Management System (BMS), the State of Health (SoH) of a battery is an indicator of its overall condition. It is cal...

más de 1 año hace

Resuelto


Battery Charge Efficiency Calculation
In a Battery Management System (BMS), the efficiency of battery charging can be estimated using the formula: where: is the...

más de 1 año hace

Resuelto


Battery Voltage Drop Estimation
In a Battery Management System (BMS), the voltage drop (V_drop) due to the load can be calculated using the formula:V_drop=I×R ...

más de 1 año hace

Resuelto


Battery Discharge Time Estimation
In a Battery Management System (BMS), the estimated discharge time (T) of a battery can be calculated as: ​​ where: ​ is the ...

más de 1 año hace

Resuelto


State of Charge (SoC) Estimation for a Battery
The State of Charge (SoC) of a battery represents its remaining charge as a percentage. It can be calculated using the formula: ...

más de 1 año hace

Resuelto


Battery Life Estimation for a Device
A battery-powered device consumes a constant current while operating. The estimated battery life (T) can be calculated using the...

más de 1 año hace

Resuelto


Tax Calculator
Calculate the tax for a given income. 10% tax is paid for any income up to $2,000. 20% tax is paid for additional income u...

más de 1 año hace

Resuelto


Given a Vector v1, create v2 which is the sum of each two adjacent elements in v1. {length(v2)=length(v1)-1}
if v1 is [1 2 3 4 5 6 7 8] then v2 should be [3 5 7 9 11 13 15]. if v1 is [1; 3; 5; 7] the...

más de 1 año hace

Cargar más