photo

George


Duke

Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

I am a student.
Professional Interests: Engineering

Estadística

All
MATLAB Answers

6 Preguntas
0 Respuestas

Cody

0 Problemas
16 Soluciones

CLASIFICACIÓN
117.961
of 300.857

REPUTACIÓN
0

CONTRIBUCIONES
6 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
66.67%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.097

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
28.305
of 171.319

CONTRIBUCIONES
0 Problemas
16 Soluciones

PUNTUACIÓN
180

NÚMERO DE INSIGNIAS
2

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 1
  • Commenter
  • Solver

Ver insignias

Feeds

Ver por

Pregunta


How to plot with repeating values in the abscissa vector?
I took a bunch of readings over the course of three days and used the "now" function to timestamp each reading. Plotting that is...

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

1

respuesta

Pregunta


Is there a way to manipulate the Font that is displayed in the Command Window?
Title says it all. Thanks in advance, George

más de 10 años hace | 2 respuestas | 0

2

respuestas

Pregunta


How to click stop a function in while loop using a pushbotton in GUI?
I have two buttons. When DC_start is pressed it disables itself and two user inputs, and then enters a while loop. At some point...

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

1

respuesta

Pregunta


I have a string with the form of that of what you would write to initialize a matrix; how do I make the string a matrix?
Title says it all. ex: myStr = [1,2,3, 5:7]; how do I make it so myArray = [1,2,3,5,6,7]. Thanks in advance, George

más de 10 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Isolate a period of a sound
Hey, I have an array of over 100K values from a wavread audio file with a pretty high sampling rate. It is the sound of a dog ba...

alrededor de 12 años hace | 0 respuestas | 0

0

respuestas

Pregunta


How do I move a Matrix from Command Window to Editor?
I made a matrix N in command window that I want to use in Editor. How do I move the data from command window to something I use ...

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

2

respuestas

Resuelto


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

más de 13 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...

más de 13 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 ...

más de 13 años hace

Resuelto


Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...

más de 13 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 ...

más de 13 años hace

Resuelto


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

más de 13 años hace

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...

más de 13 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.

más de 13 años hace

Resuelto


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

más de 13 años hace

Resuelto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

más de 13 años hace

Resuelto


Matrix indexing with two vectors of indices
Given a matrix M and two index vectors a and b, return a row vector x where x(i) = M(a(i),b(i)).

más de 13 años hace

Resuelto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

más de 13 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

más de 13 años hace

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

más de 13 años hace

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

más de 13 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

más de 13 años hace