제출됨


FFT Notes
This shows how to process a signal with an odd and even length fft.

거의 3년 전 | 다운로드 수: 1 |

Thumbnail

답변 있음
quadprog different output for R2020a and R2017a
There is an option called 'LinearSolver'. It can be dense or sparse. I set it to sparse and it converged quickly. This problem ...

대략 3년 전 | 1

| 수락됨

답변 있음
Interpolation help please!
clc; clear; close all; t = [2 4 6 8 10]; x = [2 3 4 5 6]; y = [-1 2 1 3 -1]; F1 = griddedInterpolant(t,x); F2 = gridd...

대략 3년 전 | 1

답변 있음
How can I capture a screenshot WITH the cursor displayed in Matlab?
Record the screen using Screen Recording in PowerPoint? A screen capture won't work but a screen recording will.

대략 3년 전 | 0

답변 있음
Simulink Projects dependency analysis of mex file doesn't show all required C source files
File an enhancement request with Mathworks. However, I don't think they want to support the Dependency analysis of C/C++ files b...

대략 3년 전 | 0

| 수락됨

답변 있음
How to Keep Nested For Loop Indexes From Equaling Each Other
Use the continue keyword. for i=1:50 for j=1:50 if j==i continue; % breaks the inner for loop at t...

대략 3년 전 | 0

| 수락됨

답변 있음
MATLAB Detection of Compiler
See comments above for answer.

4년 초과 전 | 0

| 수락됨

질문


MATLAB Detection of Compiler
How does MATLAB detect the compiler in 2016b or newer? I have written a custom compiler configuration xml file. mex.getCompil...

4년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...

4년 초과 전

문제를 풀었습니다


Basic electricity in a dry situation
&#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#...

4년 초과 전

문제를 풀었습니다


Solitaire Cipher
Implement the <http://en.wikipedia.org/wiki/Solitaire_(cipher) solitaire cipher>. Since this is from Wikipedia, I am capturin...

4년 초과 전

문제를 풀었습니다


Find a subset that divides the vector into equal halves
Given a vector x, return the indices to elements that will sum to exactly half of the sum of all elements. Example: Inpu...

4년 초과 전

문제를 풀었습니다


How long is the longest prime diagonal?
Stanislaw Ulam once observed that if the counting numbers are <http://en.wikipedia.org/wiki/Ulam_spiral arranged in a spiral>, t...

4년 초과 전

문제를 풀었습니다


Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
Submit your answer to this problem a multiple of 5 seconds after the hour. Your answer is irrelevant; the only thing that matte...

거의 5년 전

문제를 풀었습니다


Pernicious Anniversary Problem
Since Cody is 5 years old, it's pernicious. A <http://rosettacode.org/wiki/Pernicious_numbers Pernicious number> is an integer w...

거의 5년 전

문제를 풀었습니다


Energy of a photon
*&#9883 &#9762 &#9883 &#9762 &#9883 &#9762 &#9883* Given the frequency F of a photon in giga hertz. Find energy E of this...

거의 5년 전

문제를 풀었습니다


How to subtract?
*&plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn* * Imagine you need to subtract one...

거의 5년 전

문제를 풀었습니다


How close to a hole
Suppose you have a description of good places (ones) and bad places (zeros). You want to know your distance from a bad place (in...

거의 5년 전

문제를 풀었습니다


Find the same and successive values in a vector
Find the same and successive values in a vector. For example: Input x = [ 1 0 0 1 1 1 1 0 1 1 1 0 0 0 1 ] Start and end...

거의 5년 전

문제를 풀었습니다


Find Elements in Range
Based on a question on <http://www.mathworks.com/matlabcentral/answers/ MATLAB Answers>. Find all the elements of a vector wh...

거의 5년 전

문제를 풀었습니다


longest sequence of nans
In an array return the length of longest sequence of nans for each column. x = [ 2 3 1 2 5 6; nan nan 5 n...

거의 5년 전

문제를 풀었습니다


Solve the 2-norm Regularization Problem
In data fitting, regularization is a technique to stabilize an ill-posed problem. <https://en.wikipedia.org/wiki/Tikhonov_regula...

거의 5년 전

문제


Solve the 2-norm Regularization Problem
In data fitting, regularization is a technique to stabilize an ill-posed problem. <https://en.wikipedia.org/wiki/Tikhonov_regula...

거의 5년 전 | 0 | 솔버 수: 4

질문


Please Explain the new File Exchange Versioning Number
The new File Exchange versioning uses four numbers. Please explain what each number represents. For example, |2.1.4.2|.

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

1

답변

제출됨


Matlab Style Guidelines Cheat Sheet
One page summary of the "MATLAB Programming Style Guidelines"

거의 5년 전 | 다운로드 수: 27 |

Thumbnail

질문


S-Function Backward Compatibility
Can an S-function compiled in 2018a be used in a model in 2013b? Please cite the documentation if you know the keywords to fi...

대략 5년 전 | 답변 수: 1 | 0

1

답변

질문


Reformulate a Constrained Linear Least Square Problem
I have a problem of the form <</matlabcentral/answers/uploaded_files/119361/Clipboard01.png>> Normally you solve it like t...

대략 5년 전 | 답변 수: 2 | 0

2

답변

문제를 풀었습니다


Split array into pieces according to corresponding array
An array x of length n has values 1...m with each value appearing at least once. The values are sorted (n>=m). A second...

대략 5년 전

문제를 풀었습니다


Neither minima nor maxima
Input v is a vector. Return all the elements of v which are not a local minimum or maximum. Example: v = [1 2 3 4 5] Ou...

대략 5년 전

문제를 풀었습니다


Find indices of diagonal elements
Given a matrix A and a diagonal index d (where 0 indicates the main diagonal and off-diagonals are identified by positive and n...

대략 5년 전

더 보기