統計
MATLAB Answers
0 質問
22 回答
ランク
of 153,991
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How can I count the occurrences of each element in a vector in MATLAB?
There is a simpler way of answering this now using groupcounts(R2019a) or grouptransform(R2018b): >> x=[10 25 4 10 9 4 4]'; ...
How can I count the occurrences of each element in a vector in MATLAB?
There is a simpler way of answering this now using groupcounts(R2019a) or grouptransform(R2018b): >> x=[10 25 4 10 9 4 4]'; ...
5年以上 前 | 6
回答済み
using acummarray to average several columns at a time?
There's a simpler way of doing this with groupsummary I imported the sampledata and made the table with 7 columns: Year,Month,...
using acummarray to average several columns at a time?
There's a simpler way of doing this with groupsummary I imported the sampledata and made the table with 7 columns: Year,Month,...
6年弱 前 | 4
| 採用済み
回答済み
Divide table in days and then in hours.
Depending on the final goal here could use some of the functionality within <https://www.mathworks.com/help/matlab/ref/groupsumm...
Divide table in days and then in hours.
Depending on the final goal here could use some of the functionality within <https://www.mathworks.com/help/matlab/ref/groupsumm...
6年以上 前 | 1
回答済み
How to use accumaray to aggregate text/string based?
<https://www.mathworks.com/help/matlab/ref/accumarray.html accumarray> is for numerics only but if |c| is going to only be singl...
How to use accumaray to aggregate text/string based?
<https://www.mathworks.com/help/matlab/ref/accumarray.html accumarray> is for numerics only but if |c| is going to only be singl...
6年以上 前 | 0
回答済み
matrix multiplication speed calculation
Matrix multiplication (GEMM) is one of the heavily optimized methods and when operating on larger inputs more optimizations, blo...
matrix multiplication speed calculation
Matrix multiplication (GEMM) is one of the heavily optimized methods and when operating on larger inputs more optimizations, blo...
6年以上 前 | 3
回答済み
Replacing NaN with the average of previous and next cell value
This sounds like a use for <https://www.mathworks.com/help/matlab/ref/fillmissing.html fillmissing> with linear option: >> ...
Replacing NaN with the average of previous and next cell value
This sounds like a use for <https://www.mathworks.com/help/matlab/ref/fillmissing.html fillmissing> with linear option: >> ...
6年以上 前 | 1
| 採用済み
回答済み
How to find "maximum" value in a table
Can accomplish this easier with indexing >> T = readtable('test1.txt'); >> [~,maxidx] = max(T.SPmin); >> T(maxidx,:) ...
How to find "maximum" value in a table
Can accomplish this easier with indexing >> T = readtable('test1.txt'); >> [~,maxidx] = max(T.SPmin); >> T(maxidx,:) ...
6年以上 前 | 2
| 採用済み
回答済み
How to output specific rows from tables depending on values within the table?
If you're using R2018a and only interested in maximum JumpHeight can use <https://www.mathworks.com/help/matlab/ref/groupsummary...
How to output specific rows from tables depending on values within the table?
If you're using R2018a and only interested in maximum JumpHeight can use <https://www.mathworks.com/help/matlab/ref/groupsummary...
6年以上 前 | 1
回答済み
Daily average precip for many years
An alternative if using R2018a is <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary>, it has a few diffe...
Daily average precip for many years
An alternative if using R2018a is <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary>, it has a few diffe...
6年以上 前 | 1
回答済み
How to get cumulative sum in yearly buckets
If using R2018a and wanting the final sum each year only can use <https://www.mathworks.com/help/matlab/ref/groupsummary.html gr...
How to get cumulative sum in yearly buckets
If using R2018a and wanting the final sum each year only can use <https://www.mathworks.com/help/matlab/ref/groupsummary.html gr...
6年以上 前 | 0
回答済み
Subdivide group of data
If using R2018a you can compute the data easier by using <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsumma...
Subdivide group of data
If using R2018a you can compute the data easier by using <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsumma...
6年以上 前 | 0
| 採用済み
回答済み
Accumarray help: extracting matrix min/max based on values in first column.
For this case the type of the data is probably what is giving you the problem. In R2018a you can use <https://www.mathworks....
Accumarray help: extracting matrix min/max based on values in first column.
For this case the type of the data is probably what is giving you the problem. In R2018a you can use <https://www.mathworks....
6年以上 前 | 1
| 採用済み
回答済み
smoothing data
The issue in your code is the fact that veldata has 1 less elements than posdata because of the diff command. If you add a 0 to ...
smoothing data
The issue in your code is the fact that veldata has 1 less elements than posdata because of the diff command. If you add a 0 to ...
6年以上 前 | 0
回答済み
find duplicate values using accumarray() function:
Using <https://www.mathworks.com/help/matlab/ref/accumarray.html accumarray> specifically you could do this by combining with <h...
find duplicate values using accumarray() function:
Using <https://www.mathworks.com/help/matlab/ref/accumarray.html accumarray> specifically you could do this by combining with <h...
6年以上 前 | 1
| 採用済み
回答済み
What am I doing wrong with the function 'topkrows'
topkrows was initially introduced in R2016b as a function for tall arrays and tables only. In R2017b the functionality was ad...
What am I doing wrong with the function 'topkrows'
topkrows was initially introduced in R2016b as a function for tall arrays and tables only. In R2017b the functionality was ad...
6年以上 前 | 0
回答済み
Data Analysis: Can I compare and match timestamps?
I think you are looking for something like <https://www.mathworks.com/help/matlab/ref/table.join.html join> or <https://www.math...
Data Analysis: Can I compare and match timestamps?
I think you are looking for something like <https://www.mathworks.com/help/matlab/ref/table.join.html join> or <https://www.math...
6年以上 前 | 0
| 採用済み
回答済み
find the number of elements in matrix
If using R2018a can use <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary> with the first syntax: G...
find the number of elements in matrix
If using R2018a can use <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary> with the first syntax: G...
6年以上 前 | 0
回答済み
How to seperate the scattered population in three broad groups
In addition to the suggestion above, if you are looking for a way to automate the process of splitting the data could look at th...
How to seperate the scattered population in three broad groups
In addition to the suggestion above, if you are looking for a way to automate the process of splitting the data could look at th...
6年以上 前 | 0
回答済み
ODE45 help varying values
The height of the answer is the number of timesteps needed to compute the solution. The a=1, b=2 solution takes more steps to ...
ODE45 help varying values
The height of the answer is the number of timesteps needed to compute the solution. The a=1, b=2 solution takes more steps to ...
6年以上 前 | 0
| 採用済み
回答済み
how to convert hourly average into monthly??
If using R2018a and the data lives in a table T with variables 'Time' and 'Data' can accomplish this by using the new <https://w...
how to convert hourly average into monthly??
If using R2018a and the data lives in a table T with variables 'Time' and 'Data' can accomplish this by using the new <https://w...
6年以上 前 | 0
回答済み
For loop mean values into matrix
You can use a <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary> command in R2018a but have to convert i...
For loop mean values into matrix
You can use a <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary> command in R2018a but have to convert i...
6年以上 前 | 1
| 採用済み
回答済み
Get means for nested categorical variables
Can also use <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary> to compute directly one go from T: ...
Get means for nested categorical variables
Can also use <https://www.mathworks.com/help/matlab/ref/groupsummary.html groupsummary> to compute directly one go from T: ...
6年以上 前 | 1