Community Profile

photo

George


Duke

2012 年からアクティブ

Followers: 0   Following: 0

連絡

I am a student.
Professional Interests: Engineering

統計

All
  • Thankful Level 1
  • Commenter
  • Solver

バッジを表示

Feeds

表示方法

質問


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

9年弱 前 | 1 件の回答 | 0

1

回答

質問


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

9年弱 前 | 2 件の回答 | 0

2

回答

質問


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

9年弱 前 | 1 件の回答 | 0

1

回答

質問


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

9年弱 前 | 2 件の回答 | 0

2

回答

質問


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

10年以上 前 | 0 件の回答 | 0

0

回答

質問


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

11年以上 前 | 2 件の回答 | 0

2

回答

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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.

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前

解決済み


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

12年弱 前