統計
MATLAB Answers
0 質問
11 回答
ランク
of 153,912
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How do I solve the following problem with rounding?
You can use a tolerance : find(abs(x-0.9) < tol)
How do I solve the following problem with rounding?
You can use a tolerance : find(abs(x-0.9) < tol)
約10年 前 | 0
回答済み
Combining two arrays by pointwise repeating the elements of A(i), B(i) times.
You can use this function from the FEX : http://www.mathworks.com/matlabcentral/fileexchange/6436-rude-a-pedestrian-run-length-d...
Combining two arrays by pointwise repeating the elements of A(i), B(i) times.
You can use this function from the FEX : http://www.mathworks.com/matlabcentral/fileexchange/6436-rude-a-pedestrian-run-length-d...
約10年 前 | 0
回答済み
Please help me with this simple problem? Confusing
There is a round-off error in the last column and the last row after the Gauss-Jordan algorithm is used for the first two column...
Please help me with this simple problem? Confusing
There is a round-off error in the last column and the last row after the Gauss-Jordan algorithm is used for the first two column...
約10年 前 | 0
回答済み
Why are the solutions zeros for a linear equations ?
The _null_ function in Matlab achieve what you desire (for b=0) but I suppose this is homework related to better understand thes...
Why are the solutions zeros for a linear equations ?
The _null_ function in Matlab achieve what you desire (for b=0) but I suppose this is homework related to better understand thes...
約10年 前 | 0
| 採用済み
回答済み
Can MATLAB read 'R' data files (*.Rda) directly?
Apparently no, see <http://www.mathworks.fr/fr/help/matlab/import_export/supported-file-formats.html Supported File Formats for ...
Can MATLAB read 'R' data files (*.Rda) directly?
Apparently no, see <http://www.mathworks.fr/fr/help/matlab/import_export/supported-file-formats.html Supported File Formats for ...
約10年 前 | 0
回答済み
What is wrong in this code
You're not using the proper Matlab syntax for defining function, i.e. you don't need curly braces to define function. Just remov...
What is wrong in this code
You're not using the proper Matlab syntax for defining function, i.e. you don't need curly braces to define function. Just remov...
約10年 前 | 0
| 採用済み
回答済み
How to find the position of the maximum values in an image?
[max_value max_idx] = max(A); The position is in the second argument, _max_idx_ doc max Edit : Also, regarding your...
How to find the position of the maximum values in an image?
[max_value max_idx] = max(A); The position is in the second argument, _max_idx_ doc max Edit : Also, regarding your...
約10年 前 | 0
| 採用済み
回答済み
Appending a column to a matrix in a for loop.
First, about your function, there is a problem with the output because Matlab is case sensitive. Replace h with H. Then for y...
Appending a column to a matrix in a for loop.
First, about your function, there is a problem with the output because Matlab is case sensitive. Replace h with H. Then for y...
約10年 前 | 1
回答済み
Combine arrays to form another arrays
M = 5; N = 5; k = 5; H = randn(M, N, k) + j*randn(M, N, k); permut = nchoosek(1:k,k-1); % Find all permutations...
Combine arrays to form another arrays
M = 5; N = 5; k = 5; H = randn(M, N, k) + j*randn(M, N, k); permut = nchoosek(1:k,k-1); % Find all permutations...
約10年 前 | 1
回答済み
For loop, two variables, and summation
If you look closely to what K(i,j-i) do, you will see it returns a sub-matrice that contains more that you really want. You only...
For loop, two variables, and summation
If you look closely to what K(i,j-i) do, you will see it returns a sub-matrice that contains more that you really want. You only...
10年以上 前 | 0
| 採用済み