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...
5年以上 前
解決済み
Replicate elements in vectors (★★★)
(copy of Prob 867)
Replicate each element of a row vector (with NaN) a constant number of times. Examples
n=2, A=[1 2...
5年以上 前
解決済み
ZigZag - 01
Given a matrix, return the elements that are on the Z form of the matrix.
For example -
a=[1,2,3;
4,5,6;
7,8,9]
...
5年以上 前
解決済み
Exponentiation
Given 3 integers b,e,k; find --
mod(b^e,k)
5年以上 前
解決済み
Area-02
Given the radius of the circle inscribed in a square, find the area of the square that can be fitted perfectly in the corner.
...
Good Morning :)
Just submit your solution between 05:00:00 and 10:00:00 (AM = Ante Meridiem = Before Noon).
_Note : Consider Cody Server Time...
5年以上 前
解決済み
Ordered pairs of integers (I, J).
Write a MATLAB function that calculates the number of ordered pairs of integers (I, J) that can be formed satisfying the conditi...
5年以上 前
解決済み
Create logarithmically spaced values (★)
Given three numbers a,b,n with b>a, create a vector y with n logarithmic spaced values between 10^a and 10^b.
Thus, if a = -2, ...
5年以上 前
解決済み
Juego de posiciones
Crea una función que ordene vectores de tal manera que los primeros números sean negativos ordenados de menor a mayor. Y después...
5年以上 前
解決済み
Determina el número de cifras de un número
Crea una función que te devuelva el número de cifras de un número.
Algunos ejemplos para ayudarte serían:
El número 125 tie...