photo

RNTL


Last seen: casi 6 años hace Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Maybe later

Estadística

All
MATLAB Answers

3 Preguntas
14 Respuestas

Cody

0 Problemas
28 Soluciones

CLASIFICACIÓN
2.863
of 300.756

REPUTACIÓN
21

CONTRIBUCIONES
3 Preguntas
14 Respuestas

ACEPTACIÓN DE RESPUESTAS
33.33%

VOTOS RECIBIDOS
3

CLASIFICACIÓN
 of 21.077

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
19.082
of 170.890

CONTRIBUCIONES
0 Problemas
28 Soluciones

PUNTUACIÓN
290

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • 3 Month Streak
  • Thankful Level 1
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Textscan .txt into cell array
Assume your file is the following _myfile.txt_: a,b,c,4.31,AA-BB-CC,3 e,f,g,3.25,DD-EE-FF,5 Then use textscan as ...

alrededor de 13 años hace | 0

Respondida
creating an input list from a large data set
why don't you simply write clear dir; list = dir('c:\Lisajustin\vib\*.csv');

alrededor de 13 años hace | 0

| aceptada

Pregunta


CDF of gamma distribution
assuming X~Gamma(k,theta) where k and theta are shape and scale parameters, the CDF Fx(x) should be Fx(x) = 1/Gamma(k)*ga...

más de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


set bin rules for dfittool
Hi, i'm using dfittool to find match a pdf for a set of data. Now I see that when I change the bin rules (i.e. Scott rule ins...

más de 13 años hace | 0 respuestas | 0

0

respuestas

Respondida
analyisis of BER vs SNR for BPSK
there's a script in the file exchange <http://www.mathworks.com/matlabcentral/fileexchange/25922-ber-of-bpsk-in-awgn-channel/co...

más de 13 años hace | 0

Respondida
Type of error - Subscripted assignment dimension mismatch?
I think your variables driInput1/driInput2 are strings and not numeric. check it. if so, unless they of size one (and they are...

más de 13 años hace | 0

| aceptada

Respondida
How to use exist for a cell?
ismember(A,who)

más de 13 años hace | 1

Respondida
stairs function
i think you should try quantiz.

más de 13 años hace | 0

Respondida
sine wave function
what are x and y ? generally, according to your wavelength if you're talking about radio signals in free space, then the freque...

más de 13 años hace | 0

| aceptada

Respondida
how to generate random data (dichotomous 0-1) with normal distrubition
If your set contain only two values, namely [0,1] how can it has normal distribution? Your set should be defined by a probabili...

casi 14 años hace | 1

Respondida
How can you calculate permittivity and conductivity values from cole cole formula?
Hi, for which materials do you need it for? in order to use the cole-cole formula you need to know the fitting parameters first...

casi 14 años hace | 0

| aceptada

Resuelto


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

casi 14 años hace

Resuelto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

casi 14 años hace

Resuelto


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]

casi 14 años hace

Resuelto


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

casi 14 años hace

Resuelto


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

casi 14 años hace

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

casi 14 años hace

Resuelto


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

casi 14 años hace

Resuelto


Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...

casi 14 años hace

Resuelto


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

casi 14 años hace

Resuelto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

casi 14 años hace

Resuelto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

casi 14 años hace

Resuelto


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

casi 14 años hace

Resuelto


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

casi 14 años hace

Resuelto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

casi 14 años hace

Resuelto


Is my wife right?
Regardless of input, output the string 'yes'.

casi 14 años hace

Resuelto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

casi 14 años hace

Resuelto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

casi 14 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

casi 14 años hace

Resuelto


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

casi 14 años hace

Cargar más