統計
All
Feeds
回答済み
Need help with storing live data from sensors into array
what you need to do is create a vector/matri without defining its size first (e.g.: A=[]; ) then use the command vertcat. see h...
Need help with storing live data from sensors into array
what you need to do is create a vector/matri without defining its size first (e.g.: A=[]; ) then use the command vertcat. see h...
6年弱 前 | 0
回答済み
Best sorting algorithm for large array
I suggest you just use the command sort, see this link: https://www.mathworks.com/help/matlab/ref/sort.html
Best sorting algorithm for large array
I suggest you just use the command sort, see this link: https://www.mathworks.com/help/matlab/ref/sort.html
6年弱 前 | 0
回答済み
importdata not reading date and time columns
i suggest you use the command "readtable" , see this link https://www.mathworks.com/help/matlab/ref/readtable.html
importdata not reading date and time columns
i suggest you use the command "readtable" , see this link https://www.mathworks.com/help/matlab/ref/readtable.html
6年弱 前 | 0
| 採用済み
回答済み
Remove repeat values in a text file
i suggest you need to write an if condition on the minute vector exemple : if minute(n-1) == minute(n) then you delete the row n...
Remove repeat values in a text file
i suggest you need to write an if condition on the minute vector exemple : if minute(n-1) == minute(n) then you delete the row n...
6年弱 前 | 0
回答済み
Plotting "live" data inside while loop?
i suggest you try using the function set like in the link bellow https://www.mathworks.com/help/matlab/ref/set.html
Plotting "live" data inside while loop?
i suggest you try using the function set like in the link bellow https://www.mathworks.com/help/matlab/ref/set.html
6年弱 前 | 0
回答済み
How to split vector to seqences
u can use something like that: for i=1:8:24 var = x[i,1]; % here you need to do what store var in someplace else in order n...
How to split vector to seqences
u can use something like that: for i=1:8:24 var = x[i,1]; % here you need to do what store var in someplace else in order n...
6年弱 前 | 0
回答済み
To create zeros according to the length
I don't think you can put numérical zeros ( 00000 will be 0 if so), therefore you need to write these zeros as a string. i sug...
To create zeros according to the length
I don't think you can put numérical zeros ( 00000 will be 0 if so), therefore you need to write these zeros as a string. i sug...
6年弱 前 | 1
| 採用済み
回答済み
Merge Matrices (365 matrix to 1)
i suggest you try using the fuction cat to create a multidimentional array like in this exemple https://www.mathworks.com/help/m...
Merge Matrices (365 matrix to 1)
i suggest you try using the fuction cat to create a multidimentional array like in this exemple https://www.mathworks.com/help/m...
6年弱 前 | 0
| 採用済み
回答済み
I have a gps file to read, Can anyone help me with a code to read from txt?
You need to use the function fscanf but before that you need to open the file, i suggest you follow the exemple in this link htt...
I have a gps file to read, Can anyone help me with a code to read from txt?
You need to use the function fscanf but before that you need to open the file, i suggest you follow the exemple in this link htt...
6年弱 前 | 0
回答済み
How do I plot this on MATLAB
you can run it in a for loop (each time incrementing the value of t) , store the values of v in a vector and plot the vector. ch...
How do I plot this on MATLAB
you can run it in a for loop (each time incrementing the value of t) , store the values of v in a vector and plot the vector. ch...
6年弱 前 | 0
回答済み
Removing NAN values from the table and deleting it.
use this : (isnan(X)) = [] % X is the table
Removing NAN values from the table and deleting it.
use this : (isnan(X)) = [] % X is the table
約6年 前 | 1
回答済み
how do I Load multiple csv files to collate data???
try something like that i could work num_files = 5; for i = 1 : num_files lat = ncread(sprintf('rawdata0', i), 'lat'); ...
how do I Load multiple csv files to collate data???
try something like that i could work num_files = 5; for i = 1 : num_files lat = ncread(sprintf('rawdata0', i), 'lat'); ...
約6年 前 | 0
回答済み
how to do 5 fold cross-validation for regression problem?
u have to use cvpartition like this exapmple kf=5; c = cvpartition(size(data.label,1),'KFold',kf); u can find more infor...
how to do 5 fold cross-validation for regression problem?
u have to use cvpartition like this exapmple kf=5; c = cvpartition(size(data.label,1),'KFold',kf); u can find more infor...
約6年 前 | 0
回答済み
How to compare each four rows by each other?
i prpose this algorithm: u define a variable m=4, and n=1, n is the number of the row, each time u search for your diffrences b...
How to compare each four rows by each other?
i prpose this algorithm: u define a variable m=4, and n=1, n is the number of the row, each time u search for your diffrences b...
約6年 前 | 0
回答済み
How to find the best ratio of producers in an energy system
i think u may make a 3 nested loops in which each time you fix two variables and vary the 3 rd variable and each time u store th...
How to find the best ratio of producers in an energy system
i think u may make a 3 nested loops in which each time you fix two variables and vary the 3 rd variable and each time u store th...
約6年 前 | 0
回答済み
How can i resolve this error?
u need to go back to wiener2 function and see how much variable u need, i think you forgot a variable
How can i resolve this error?
u need to go back to wiener2 function and see how much variable u need, i think you forgot a variable
約6年 前 | 0
| 採用済み
回答済み
Importing a CSV with numbers and strings and blank space
u need to save the csv file as xls file and then use the function xlsread, it should work , use something like this: xlsread('...
Importing a CSV with numbers and strings and blank space
u need to save the csv file as xls file and then use the function xlsread, it should work , use something like this: xlsread('...
約6年 前 | 0
回答済み
Hi. I want the plot with a marker symbol. I want to plot like this figure symbol(marker by red pen).
u need to use lineSpec this link may help you https://www.mathworks.com/help/matlab/ref/linespec.html
Hi. I want the plot with a marker symbol. I want to plot like this figure symbol(marker by red pen).
u need to use lineSpec this link may help you https://www.mathworks.com/help/matlab/ref/linespec.html
約6年 前 | 0
回答済み
editing large text file
this is how is suggest you can do : -import your file/-use a for loop to search for 'H' and after it a 'j' and after it a 'Y' / ...
editing large text file
this is how is suggest you can do : -import your file/-use a for loop to search for 'H' and after it a 'j' and after it a 'Y' / ...
約6年 前 | 0
回答済み
Combine variables in workspace into one table?
is this link helpful ? <https://www.mathworks.com/help/stats/create-a-dataset-from-workspace-variables.html>
Combine variables in workspace into one table?
is this link helpful ? <https://www.mathworks.com/help/stats/create-a-dataset-from-workspace-variables.html>
約6年 前 | 0
| 採用済み
回答済み
How to calculate mean frequency for mat signal
u can just import the frequencies, store all the frequencies in an array and then use the function mean like bellow https://...
How to calculate mean frequency for mat signal
u can just import the frequencies, store all the frequencies in an array and then use the function mean like bellow https://...
約6年 前 | 0
回答済み
Mexing problem (gcc compiler version 4.9.x needed)
can u update the gcc, or try to find anothor tool for mexing files
Mexing problem (gcc compiler version 4.9.x needed)
can u update the gcc, or try to find anothor tool for mexing files
約6年 前 | 0
回答済み
error: Too many output arguments
when writing the for loop it dosen't end with a ; and next the second for loop need to be under the first for loop and decaled ...
error: Too many output arguments
when writing the for loop it dosen't end with a ; and next the second for loop need to be under the first for loop and decaled ...
約6年 前 | 0
解決済み
What is Sum Of all elements of Matrix
Given the matrix x, return the sum of all elements of matrix. Example: Input x = [ 1 2 0 0 0 0 6 9 3 3 ] ...
約6年 前
解決済み
Compute a dot product of two vectors x and y
x and y are input vectors, d is a number and contains their dot product
約6年 前
解決済み
Test Problem; Create a 5x5 array containing all ones
This is a test for learning the process of creating a Cody problem. The goal of this test problem will be to create an array,...
約6年 前
回答済み
SOFTWARE INSTALLION IN A NEW COMPUTER
if u still have the licence jey there is no need to buy it again
SOFTWARE INSTALLION IN A NEW COMPUTER
if u still have the licence jey there is no need to buy it again
約6年 前 | 0
回答済み
Import grid data and surface fit
1- u need to use the function xlsread , see this link : https://www.mathworks.com/help/matlab/ref/xlsread.html
Import grid data and surface fit
1- u need to use the function xlsread , see this link : https://www.mathworks.com/help/matlab/ref/xlsread.html
約6年 前 | 0