Solved


plotting a quantized signal (DSP)
Given the following sinusoidal wave x(t)= 5 sin(2pi * 50*t) with a 4 bit bipolar quantizer, sampled at 8000 Hz and signal range ...

ongeveer 7 jaar ago

Solved


Quantization
3-bit ADC channel accepts analog input ranging from 0 to 5 volts, determine the number of quantization levels.

ongeveer 7 jaar ago

Solved


Decimal to Binary
Create a function that returns the binary of a decimal number. Decimal number is given as 6

ongeveer 7 jaar ago

Solved


Converting binary to decimals
Convert binary to decimals. Example: 010111 = 23. 110000 = 48.

ongeveer 7 jaar ago

Solved


Radians to Degrees
Convert radians to degrees.

ongeveer 7 jaar ago

Solved


Degrees to Radian
Convert degrees to radians

ongeveer 7 jaar ago

Solved


Signal sample
Find the no. Of quantisation level of signal with 6-bits.

ongeveer 7 jaar ago

Solved


if
if value n is larger than or equal to 100, return true, else false.

ongeveer 7 jaar ago

Solved


Alternative Dimensions
Given a multidimensional matrix, transform the matrix so the dimensions are in the order given by variable ord. For example, giv...

ongeveer 7 jaar ago

Solved


Create a function for uniform quantization decoding.
include the formula to find pq, delta and quantization level.

ongeveer 7 jaar ago

Solved


Quantization Level
Given an 3-bit Quantizer ranging from 0-5 Volts, Determine the number of quantization level.

ongeveer 7 jaar ago

Solved


Negative without '-'
Simple: return a negative number without using the '-' sign. Thanks to Problem <https://www.mathworks.com/matlabcentral/cody/...

ongeveer 7 jaar ago

Solved


Replace all odd numbers with NaN
Replace all odd numbers in the vector or matrix with NaN. For example, if x = [1 3 4 5 8 11]; then return y = [NaN Na...

ongeveer 7 jaar ago

Solved


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

ongeveer 7 jaar ago

Solved


true or false
if the matrix has a zero, return true. else, return false

ongeveer 7 jaar ago

Solved


find the area of rectangle
find the area given length and width

meer dan 7 jaar ago

Solved


Matrix to 3-Column Matrix
Consider a matrix *A* such as A = [1 2 3 3 4 5 6; 2 3 4 5 6 7 8]; Can you convert this matrix to a three-column ...

meer dan 7 jaar ago

Problem


Matrix to 3-Column Matrix
Consider a matrix *A* such as A = [1 2 3 3 4 5 6; 2 3 4 5 6 7 8]; Can you convert this matrix to a three-column ...

meer dan 7 jaar ago | 1 | 50 solvers

Solved


Vector to Matrix
*A* is a vector such as A=[1 2 3 3 4 5 6] Can you convert this vector to a matrix such as M=[1 2 3 2 3 3 ...

meer dan 7 jaar ago

Problem


Vector to 3-Column Matrix
Consider a vector *A* such as A = [1 2 3 3 4 5 6] Can you convert this vector to a three-column matrix like this: ...

meer dan 7 jaar ago | 3 | 92 solvers

Solved


Sort rows of a matrix
Sort rows of matrix A in an ascending order according to the last column Example input: A = [1 2 3;7 8 9;4 5 6]; Exam...

meer dan 7 jaar ago

Solved


find the area of rectangle
find the area of the rectangle given the length and width

meer dan 7 jaar ago

Solved


combine 2 strings
combine 2 strings

meer dan 7 jaar ago

Solved


Circumference
Find the circumference of a circle (x=diameter)

meer dan 7 jaar ago

Solved


Sudoku square
We have a small Sudoku square, but one number is missing. x = [ 1 5 4 8 6 3 0 9 7 ] Make a function, wher...

meer dan 7 jaar ago

Solved


Bell Number calculator
Calculate a vector of Bell numbers for sets up to length n. Bell numbers are the maximum number of partitions of a set. See the ...

meer dan 7 jaar ago

Solved


Is this number Munchhausen Narcissistic?
In this problem, simply return 1 if a supplied number is Munchhausen narcissistic or 0 if not. Example 153 is narcissistic...

meer dan 7 jaar ago

Solved


Find the area of a triangle
Given a triangle with a base b and height h, return the triangle area.

meer dan 7 jaar ago

Solved


BASICS - sum part of vector
Please make a function, where as input you get vector "x" and and vector "c", where in "c" vector you get indexes to sum. Examp...

meer dan 7 jaar ago

Solved


Remove All elements less than 5
Given an input vector x, remove all elements of x less than 5 . Example: Input x = [ 1 2 5 7 3 ] Output y is [ 5 7 ...

meer dan 7 jaar ago

Load more