문제를 풀었습니다


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

거의 11년 전

문제를 풀었습니다


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

거의 11년 전

문제를 풀었습니다


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

거의 11년 전

문제를 풀었습니다


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

거의 11년 전

문제를 풀었습니다


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

거의 11년 전

답변 있음
How to tune a discrete PID when a step response is known?
Take a look at the <http://www.mathworks.co.uk/help/control/pid-controller-design.html Control System Toolbox documentation> for...

11년 초과 전 | 0

답변 있음
gca behaves different in 2014b
Christian, This seems to work fine. Are you sure you definitely have an axes in your figure? gca will only open a new figure ...

11년 초과 전 | 0

답변 있음
Add item to SharePoint 2010 list through MATLAB
For anybody who is interested in the solution, my question has been answered on Stack Overflow. http://stackoverflow.com/ques...

거의 12년 전 | 3

| 수락됨

문제를 풀었습니다


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

거의 12년 전

문제를 풀었습니다


Free passes for everyone!
_Simply return the name of the coolest numerical computation software ever_ *Extra reward* (get a _freepass_): As an addit...

거의 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 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년 전

질문


Add item to SharePoint 2010 list through MATLAB
Is it possible to add an item to a list in SharePoint 2010 through MATLAB? I assume there must be some .NET web services that co...

거의 12년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Matlab: How to profile inefficient lines of code with running count visualisation?
No it's there in 2012a but just hidden away. You will be able to use the commands in the link above.

거의 13년 전 | 1

| 수락됨

답변 있음
Error while deleting a line in Simulink
Command line interaction like this is not really a beginner thing. Silly question, but I assume you know you can just press the ...

거의 13년 전 | 0

답변 있음
Matlab: How to profile inefficient lines of code with running count visualisation?
You should lookup the MATLAB Profiler. This is easily accessible through the toolbar in 2012b onwards (run and time is one way)....

거의 13년 전 | 0

답변 있음
AND operation for textfiles in MATLAB
No this will not work. Just try and imagine all the possible ways that you could define the merge option for three text files an...

거의 13년 전 | 0

답변 있음
How to make a GUI Non-active But stays visible.
You could look to set the enabled property of items in your non-active GUI to off or inactive when GUI2 becomes visible.

거의 13년 전 | 0

답변 있음
How can I use csvread to read the first 2 columns of a file with variable number of rows?
Using csvread it's not possible to specify what you need to do. You can either specificy the start row and column to read from a...

거의 13년 전 | 0

| 수락됨

답변 있음
How to resample a signal by a fraction
I suggest you reciprocate your a variable and round it to the nearest integer. You then just need to make sure you get the argum...

거의 13년 전 | 1

답변 있음
how to find snr ratio of audio signals in simulink? plz help me by replying as soon as possible
I suggest you first start by referring back to the definition of SNR - i.e. the power ratio between a signal and the background ...

거의 13년 전 | 0

문제를 풀었습니다


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

대략 13년 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

대략 13년 전

문제를 풀었습니다


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

대략 13년 전

답변 있음
How can I connect matlab to mysql?
As Sven suggests, you should use the functions within the Database Toolbox - assuming of course that you have this toolbox. The ...

13년 초과 전 | 0

답변 있음
How to read text file and put it in to a matrix format.
You should try looking up the functions textread and textscan if you want to do this programatically. Alternatively you can use ...

13년 초과 전 | 0

답변 있음
Why do I get this result??
Try this k=2*A+3*B if k<3.65 fr='inf' elseif k >= 3.65 && k<= 4.35 fr='moy' elseif k>4.35 fr=...

13년 초과 전 | 1

답변 있음
"For" loop output storage
John, you could define a variable before the first for loop such as counter = 1; and then use this to index cs in the inner loop...

13년 초과 전 | 0

답변 있음
Multiples of numbers and plotting?
Jon, We obviously can't give you the direct answer as this is a homework problem but here are some tips that may help you sol...

13년 초과 전 | 2

더 보기