TT
Followers: 0 Following: 0
Programming Languages:
MATLAB
Spoken Languages:
Japanese
MATLAB
Spoken Languages:
Japanese
Feeds
문제를 풀었습니다
Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...
대략 1년 전
문제를 풀었습니다
Count consecutive 0's in between values of 1
So you have some vector that contains 1's and 0's, and the goal is to return a vector that gives the number of 0's between each ...
거의 2년 전
문제를 풀었습니다
Special matrix
Make a square matrix with this shape. For n=4 M = 1 1 0 0 1 0 1 0 0 1 0 ...
거의 3년 전
문제를 풀었습니다
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; ...
거의 3년 전
문제를 풀었습니다
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 1 ...
거의 3년 전
답변 있음
for文を使用した変数の連番作成
セル配列を利用してはいかがでしょうか。 a=[0,1,2,3,4,5,6,7,0,2,5,6,7,8,9,0,4,5,6,7,3,2] b=[1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,2,1,3,4,5] if a(end)...
for文を使用した変数の連番作成
セル配列を利用してはいかがでしょうか。 a=[0,1,2,3,4,5,6,7,0,2,5,6,7,8,9,0,4,5,6,7,3,2] b=[1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,2,1,3,4,5] if a(end)...
대략 3년 전 | 1
답변 있음
MATLAB 基礎 データの管理 セル配列のインデックス指定(3/6) セル配列のインデックス指定 追加の問題
「ecをregion{2,2}に代入する」ということを意図した質問ではないでしょうか。 regions{2,2}=ec
MATLAB 基礎 データの管理 セル配列のインデックス指定(3/6) セル配列のインデックス指定 追加の問題
「ecをregion{2,2}に代入する」ということを意図した質問ではないでしょうか。 regions{2,2}=ec
대략 3년 전 | 0
| 수락됨
문제를 풀었습니다
Pascal's Matrix
Given an integer n ≥ 0, generate the ( _n_+1) × ( _n_+1) lower triangular <http://en.wikipedia.org/wiki/Pascal_matrix P...
3년 초과 전
문제를 풀었습니다
Natural numbers in string form
Create a cell array of strings containing the first n natural numbers. _Slightly_ harder than it seems like it should be. Ex...
3년 초과 전
문제를 풀었습니다
Fix the last element of a cell array
Note: this is lifted directly from <http://www.mathworks.com/matlabcentral/answers/82825-puzzler-for-a-monday Puzzler for a Mond...
3년 초과 전
문제를 풀었습니다
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...
3년 초과 전
문제를 풀었습니다
Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...
3년 초과 전
문제를 풀었습니다
Remove element(s) from cell array
You can easily remove an element (or a column in any dimension) from a normal matrix, but assigning that value (or range) empty....
3년 초과 전
문제를 풀었습니다
Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'
3년 초과 전
문제를 풀었습니다
Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...
3년 초과 전
문제를 풀었습니다
Convert a numerical matrix into a cell array of strings
Given a numerical matrix, output a *cell array of string*. For example: if input = 1:3 output is {'1','2','3'} whic...
3년 초과 전
문제를 풀었습니다
Create a cell array out of a struct
Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column: in: ...
3년 초과 전
문제를 풀었습니다
Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...
3년 초과 전
문제를 풀었습니다
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...
대략 4년 전
문제를 풀었습니다
Create an n-by-n null matrix and fill with ones certain positions
The positions will be indicated by a z-by-2 matrix. Each row in this z-by-2 matrix will have the row and column in which a 1 has...
대략 4년 전
문제를 풀었습니다
Symmetry of vector
Determine whether the vector is symmetric or not (vector could be even or odd in length). For example: x = [1 2 3 3 2 1] ...
대략 4년 전
문제를 풀었습니다
Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....
대략 4년 전
문제를 풀었습니다
Put two time series onto the same time basis
Use interpolation to align two time series onto the same time vector. This is a problem that comes up in <http://www.mathwork...
거의 5년 전
문제를 풀었습니다
Piecewise linear interpolation
Given an Mx2 vector and a row of M-1 integers, output a two column vector that linearly interpolates Y times between each succes...
거의 5년 전
문제를 풀었습니다
One track five lanes
Find the minimum number of lane changes necessary to cross the entire track without running into any obstacles <<http://www.a...
거의 5년 전
문제를 풀었습니다
Joining Ranges
You are given a n-by-2 matrix. Each row represents a numeric range, e.g. x = [0 5; 10 3; 20 15; 16 19; 25 25] contains...
거의 5년 전
문제를 풀었습니다
middleAsColumn: Return all but first and last element as a column vector
Given input A, return all but the first and last elements, arranged as a column vector. (I.e., all dimensions after the first s...
거의 5년 전
문제를 풀었습니다
"Low : High - Low : High - Turn around " -- Create a subindices vector
Let two vectors *lo* and *hi* be given. The job is to create a index vector like so idx = [lo(1):hi(1) lo(2):hi(2) ...]...
거의 5년 전
문제를 풀었습니다
Return elements unique to either input
Given two numeric inputs a and b, return a row vector that contains the numbers found in only a or only b, but not both. For ex...
거의 5년 전