Community Profile

photo

RST


Last seen: 30일 전 2015년부터 활동

Followers: 0   Following: 0

연락

통계

All
  • First Answer
  • Matrix Patterns I Master
  • Indexing II Master
  • First Submission
  • First Review
  • Indexing I Master
  • Matrix Manipulation II Master
  • Computational Geometry I Master
  • Matrix Manipulation I Master
  • Tiles Challenge Master
  • ASEE Challenge Master
  • Leader

배지 보기

Feeds

보기 기준

제출됨


PickPointNonblocking - pick points in axes without blocking
The PickPointNonblocking class allows the user to pick points from an axes without blocking the GUI with uiwait()

대략 1개월 전 | 다운로드 수: 2 |

Thumbnail

답변 있음
Is there a generic modal dialog for appdesigner that can be customized?
Since R2020b we can make a custom AppDesigner modal dialog by using these features: app.UIFigure.WindowStyle = 'modal' uiwait(...

대략 2개월 전 | 0

답변 있음
How to handle listener lifetime in MATLAB apps?
Answering my own question. I have not tried MagicListener for this, but it looks useful. Instead, my client app saves a lis...

5개월 전 | 0

답변 있음
How can I edit an appdesigner's destructor
Given that the CloseRequest() function is is not called when an app is delete()-ed, I believe the most reliable solution is to l...

5개월 전 | 0

질문


How to handle listener lifetime in MATLAB apps?
This simple two-window app has a data source app which passes data via an event to one or more listeners. The source is wavefo...

5개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
mustBeMember validation problem failure
Self answer. The char array is being forced into a column vector not the intended row vector. We want the size to be constrain...

6개월 전 | 0

| 수락됨

질문


mustBeMember validation problem failure
This class fails property validation on construction classdef validationTester properties coupling (1,:) char {mu...

6개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
How do I convert a numerical vector into a comma-delimited string?
We can also use compose() for a formatted one-liner: a = rand(5,1); csva = strjoin(compose('%.3f', a), ', ') and also for 2D...

9개월 전 | 0

제출됨


mergeStructures(): merge or concatenate nested structures
merge nested structures, recursively

10개월 전 | 다운로드 수: 2 |

문제를 풀었습니다


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

1년 초과 전

문제를 풀었습니다


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

1년 초과 전

답변 있음
Difference between tcpclient and tcpip?
In addition to the above it appears that: tcpip acts as a MATLAB fileID (similar to a C-language FILE*), so supports fread(), ...

1년 초과 전 | 1

답변 있음
How do I activate MATLAB or other MathWorks Products?
What to do when activate_matlab.exe does not open / fails silently? Win7/64, MATLAB 2018b, used to work fine.

대략 5년 전 | 0

문제를 풀었습니다


Create a block diagonal matrix
A block diagonal matrix is a square matrix that can be written as A = [a 0 0 0 0 b 0 0 0 0 c 0 ...

6년 초과 전

문제를 풀었습니다


Numbers spiral diagonals (Part 1)
Inspired by Project Euler n°28 et 58. A n x n spiral matrix is obtained by starting with the number 1 and moving to the right...

6년 초과 전

문제를 풀었습니다


Toeplitz Matrix
For a given square matrix of order n-by-n check whether this is a Toeplitz matrix or not. Return true if it is.

6년 초과 전

문제를 풀었습니다


Generate this matrix
For a given odd integer n, generate a matrix as follows: Input: n = 5; Output: [ 2 1 0 0 0 1 ...

6년 초과 전

문제를 풀었습니다


ZigZag matrix with reflected format
ZigZag MATRIX with REFLECTED format. We have only input x. We have to create a matrix in the following pattern. input n=5...

6년 초과 전

문제를 풀었습니다


Rainbow matrix
Create a "rainbow matrix" as described in the following examples Input = 3 Output = [ 1 2 3 2 3 2 ...

6년 초과 전

문제를 풀었습니다


Matrix Construction I
Given n, construct a matrix as shown in the example below. Example For n=8, the output should look like this: 1 2 3 4 ...

6년 초과 전

문제를 풀었습니다


Generate this matrix
Generate the following matrix. n = 2; out = [-4 -3 -2 -1 0 -3 -2 -1 0 1 -...

6년 초과 전

문제를 풀었습니다


Twist 'n' Match
Given n and m, construct an n-by-n matrix a such that a, when rotated 90 degrees and compared with itself, matches itself in exa...

6년 초과 전

문제를 풀었습니다


Spot the rectangle (Part 2)
This problem is related to the <http://bit-player.org/2009/the-17x17-challenge 17x17 challenge>. See also <http://www.mathworks....

6년 초과 전

문제를 풀었습니다


Spiral In
Create an m by n matrix filled with sequential integers starting from 1 and arranged in a counterclockwise spiral that hugs the ...

6년 초과 전

문제를 풀었습니다


Matrix spiral
Make a spiral in a (n*n) matrix. The spiral has to start in the top left, and has to rotate clockwise to the center. The spiral ...

거의 7년 전

문제를 풀었습니다


Make a logical diamond using GALLERY function
Inspired from <http://www.mathworks.com/matlabcentral/cody/problems/1078-make-a-diamond Problem 1078. Make a diamond> In thi...

거의 7년 전

문제를 풀었습니다


Create Volcano (or Atoll) martix. It is an extension of Bullseye matrix problem.
For example, if n=2 (maximum value), the output matrix should be [1 1 1 1 1; 1 2 2 2 1; 1 2 1 2 1; 1 2 2 2 1; 1...

거의 7년 전

문제를 풀었습니다


Spot the rectangle
This problem is related to the <http://bit-player.org/2009/the-17x17-challenge 17x17 challenge>. Given a matrix filled with ones...

거의 7년 전

문제를 풀었습니다


Create a patchwork matrix
This function will assemble a large matrix out of a number of smaller ones m1, m2, etc., according to a pattern P. If P is 3x5,...

거의 7년 전

문제를 풀었습니다


Mirror Image matrix across anti-diagonal
Given an input number x, create a mirror image matrix 'Y' across the anti-diagonal. For example, if x=3, Y = [1 2 3; ...

거의 7년 전

더 보기