답변 있음
How to fix: Index Exceeds Matrix Dimensions
for k=1:neuron_matrix_size(2) w(k,winning_neuron)=w(k,winning_neuron)+learning_rate.*(current_reading(k)-w(j,k)...

거의 6년 전 | 0

질문


matched filtering between two signals
I have a direct signal and an echo signal. how to do matched filtering between these two signals for target detection

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

1

답변

답변 있음
Find the maximum value and its position of a 10x10x10 matrix which meets a set of parameters.
max_value_position=max(M); max_value=M(max(M));

대략 6년 전 | 0

답변 있음
which version of daemon supports which version of matlab
<https://in.mathworks.com/matlabcentral/answers/277493-what-does-version-v35-with-lmutil-mean>

대략 6년 전 | 0

질문


Matrix addition of a first column in a loop
i have a cell A with 'n' cells inside. inside each cell i have a matrix. i want to do matrix addition of all the first column o...

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

1

답변

답변 있음
Undefined function 'symsum' for input arguments of type 'double'
First you need to syms n not sym n

대략 6년 전 | 0

| 수락됨

답변 있음
What DOF in matlab mean ?
The number and types of joints, gears, and constraints in a mechanism partially determine its mobility—the total number of degre...

대략 6년 전 | 0

| 수락됨

답변 있음
Why i am getting the error "Too many open files. Close files to prevent MATLAB instability."
The reason for the error messages is because the number of files that are open exceeds the limit on the maximum number of files ...

대략 6년 전 | 0

답변 있음
How to create section in matlab
put like this before section write like this to create a section %% Sections=[SecID A ky kz Ixx Iyy Izz yt...

대략 6년 전 | 0

| 수락됨

문제를 풀었습니다


subtraction of two nos
given a and b, subtract and give the answer

대략 6년 전

문제를 풀었습니다


英語の文章内の母音を取り除くコードを書きましょう。
与えられた英語の文章内の母音を取り除きましょう。 例: 入力 s1 が 'Jack and Jill went up the hill' の場合、 出力 s2 は 'Jck nd Jll wnt p th hll' * (英語版) ...

대략 6년 전

문제를 풀었습니다


二乗になっている数を見つけよう
ある数のベクトルが与えられた場合、そのベクトルの要素の一つが他の要素の二乗であれば true を返し、それ以外の場合は false を返すようなコードを書いてみましょう。 例: 入力が a = [2 3 4] のとき、 出力 b は t...

대략 6년 전

문제를 풀었습니다


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

대략 6년 전

문제를 풀었습니다


行列内の素数の平均をとろう
行列が与えられたときに、その行列内の素数の平均を計算する関数を作成しましょう。 例: 入力の行列が in = [ 8 3            5 9 ] のとき、 出力が 4 あるいは (3+5)/2 のようになり...

대략 6년 전

문제를 풀었습니다


ベクトルの値が増加しているかを調べよう
ベクトルの値が増加している場合 (ベクトルの各要素が前の要素よりも大きい場合) には true を、そうでない場合には false を返すようなコードを書いてみましょう。 例: 入力が x = [-3 0 7] のとき、 関数の...

대략 6년 전

문제를 풀었습니다


チェッカーボードを作ろう
整数 n が与えられた時、以下の様な1と0を含むn×nの行列を作成しましょう。a(1,1) は1にする必要があります。 例: 入力 n = 5 出力 a が [1 0 1 0 1 0 1 0 1 0 ...

대략 6년 전

문제를 풀었습니다


ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
MATLABでは,角括弧の中に要素を入れることで、ベクトルを作成できる。 x = [1 2 3 4] また次のようにも書ける(コンマはオプション)。 x = [1, 2, 3, 4] 問題:次のベクトルを出力する関数を作成せよ。...

대략 6년 전

문제를 풀었습니다


2倍してみよう - ここからスタート!
初めにこの問題を試してみよう。 入力としてxを与え、それを2倍して結果をyに代入せよ。 Examples: Input x = 2 Output y is 4 Input x = 17 Output y is 34 ...

대략 6년 전

문제를 풀었습니다


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

대략 6년 전

문제를 풀었습니다


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

대략 6년 전

문제를 풀었습니다


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

대략 6년 전

문제를 풀었습니다


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

대략 6년 전

문제를 풀었습니다


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

대략 6년 전

문제를 풀었습니다


NaN (欠損値) が含まれている行を削除しよう
行列 A が与えられたとき、その行列の中に NaN (Not a number; 欠損値) の要素がある行を見つけ出し、その行を削除しましょう。 例: A = [ 1 5 8 -3 NaN 14 ...

대략 6년 전

문제를 풀었습니다


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

대략 6년 전

문제를 풀었습니다


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

대략 6년 전

문제를 풀었습니다


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

대략 6년 전

문제를 풀었습니다


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

대략 6년 전

문제를 풀었습니다


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

더 보기