Risposto
Need Help Coding a Gaussian Problem
You might not be using the correct data for this. For example, in your implementation x_i and x_j are simply numbers. Shouldn't ...

oltre 5 anni fa | 0

Risposto
How can I find the median of each row in a matrix?
Try this (assuming that your matrix is called A): for i=1:150 x=sort(A(i,:)); median_value(i)=0.5*(x(2)+x(3)); end You will...

oltre 5 anni fa | 0

Risolto


Calculate Engine Power
Calculate Engine Power (P) in kW given the values of Torque(M) in Nm and Engine Speed(n) in rpm

oltre 5 anni fa

Risolto


Electrical Diode Current Calculation
In engineering, there is not always a single equation that describes a phenomenon accurately enough to be applied in all instanc...

oltre 5 anni fa

Risolto


An Ohm's Law Calculator
*BACKGROUND / MOTIVATION:* Many important observations in math and science can be described by short, but powerful, equations...

oltre 5 anni fa

Risolto


Create an anti-identity matrix
Create an anti-identity matrix of given dimension. Examples n = 2 A = [0 1; 1 0] n = 3 A = [0 0 1; 0 1 0; 1 0 0...

oltre 5 anni fa

Risolto


determine the sum of the squares
if x = 4, the solution will be: y = 1^2+2^2+3^2+4^2=1+4+9+16 = 30.

oltre 5 anni fa

Risolto


sum all digits
input = 123456789, output = 1+2+3+4+5+6+7+8+9 = 45

oltre 5 anni fa

Risolto


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

oltre 5 anni fa

Risolto


Tridiagonal matrix
Given vectors u and v, make a tri-diagonal symmetric matrix such that u is in the main diagonal and v is below and above diagona...

oltre 5 anni fa

Risolto


Number Puzzle - 119

oltre 5 anni fa

Problema


Number Puzzle - 119

oltre 5 anni fa | 1 | 25 risolutori

Risolto


Number Puzzle - 118

oltre 5 anni fa

Problema


Number Puzzle - 118

oltre 5 anni fa | 1 | 21 risolutori

Risolto


Draw a '4' in a zero matrix!

oltre 5 anni fa

Risolto


Draw a '6' in a zero matrix!

oltre 5 anni fa

Risolto


Draw a '9' in a zero matrix!

oltre 5 anni fa

Risolto


Draw a '7' in a zero matrix!

oltre 5 anni fa

Risolto


Draw a '8' in a zero matrix!

oltre 5 anni fa

Risolto


Draw a '5' in a zero matrix!

oltre 5 anni fa

Risolto


Draw a '3' in a zero matrix!

oltre 5 anni fa

Risolto


Draw a '1' in a zero matrix!

oltre 5 anni fa

Risolto


Sum of series VIII

oltre 5 anni fa

Risolto


Sum of series IX

oltre 5 anni fa

Risolto


Sum of series
a(n) = n^2 - (n-1)^2 find the summation of the series upto n i.e. a(1)+a(2)+...+a(n)

oltre 5 anni fa

Risolto


easy problem
Find the last element of the array

oltre 5 anni fa

Risolto


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

oltre 5 anni fa

Risolto


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

oltre 5 anni fa

Risolto


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

oltre 5 anni fa

Carica altro