回答済み
Reading .csv files from .txt file.
How to read text files is maybe the most frequently asked question. Among many solutions, you can either directly read the txt f...

約6年 前 | 0

| 採用済み

回答済み
Concatenate nested cell array in one
Since apparently it was the correct solution, I'll repost it: It puzzles me why you would want this without the temporary varia...

約6年 前 | 0

| 採用済み

回答済み
Splitting arrays based on row number resulting from for loop
Here you go: data=(1:10)'+(0:1);%generate some data splits=[3 8];%use the splits you mentioned if ~isempty(splits) spl...

約6年 前 | 0

| 採用済み

回答済み
GUI Interface to guess a random number
You should put it in the function that executes when you start you GUI: OpeningFcn. Be sure to store the value in the handles s...

約6年 前 | 0

回答済み
Counting and removing rows with the same numbers in a particular order
Assuming this is indeed the input data you have: A = [1234;4123;3412]; B=arrayfun(@(x) sort(sprintf('%d',round(x))),A,'Unifo...

約6年 前 | 0

回答済み
Picking up the correct index values
You should probably rethink the way you store these values, because this is much more difficult to index than it needs to be. v...

約6年 前 | 0

| 採用済み

回答済み
error when using 'find' function
If you store output of the find function to a temporary variable, you will notice that the error occurs when that temporary vari...

約6年 前 | 0

| 採用済み

回答済み
How to solve this error?
You are close, but you forgot that the code below returns an array. month==[4,6,9,11] Use parantheses to group your coditions....

約6年 前 | 0

| 採用済み

回答済み
Adding Noise To A Folder OF Images in A Loop
If you don't understand how a function works you should read the documentation. It contains several examples and shows you how t...

約6年 前 | 0

| 採用済み

回答済み
scatter plot covers the axes values
If you manually set the tick labels you can set an arbitrary distance between the axis and the label. If this doesn't work you m...

約6年 前 | 0

回答済み
How to automatically display a figure in fullscreen in MATLAB2016?
It doesn't look it is possible to draw over the taskbar like that in older versions. The closest you will probably get is with s...

約6年 前 | 0

| 採用済み

回答済み
Counting the number of occurences for specific values in an array
a=[ 1 2 3 4 5 5 4 3 2 1 ] ; histcounts(a) If you have non-integer data you can use the unique function to convert your vector ...

約6年 前 | 0

回答済み
How can I create a structure array for two files?
You can treat fields of a struct just like any other variable: ECGData=struct;%create empty struct, this isn't mandatory ECGDa...

約6年 前 | 1

| 採用済み

回答済み
How to calculate average for data every nth row?
Something like this should do the trick: data=rand(900,9); row_interval=30; avg=zeros(1,row_interval); stderr=zeros(1,row_...

約6年 前 | 1

回答済み
how to make a table as a figure ?
There is an example about how to do this in the documentation of the uitable function.

約6年 前 | 0

回答済み
Can anyone help me with understanding this code?
Did you read the documentation for arrayfun? That seems like a good place to start. The part with 'un' is a bit more tricky tho...

約6年 前 | 0

| 採用済み

回答済み
How can i read exact value (as it is) from csv file and separate data using empty row? ver.16b
The readfile function you can find here will read a file to a cell array, one line per cell. It will preserve blank lines and le...

約6年 前 | 0

| 採用済み

回答済み
text on image position
You can set the Unit property to Normalized. Note that this uses normal axis coordinates, so the y-axis is flipped. (the full b...

約6年 前 | 0

回答済み
Average multiple vectors with different lengths
Pad the shorter vectors with NaN and use the 'omitnan' flag in mean.

約6年 前 | 1

| 採用済み

回答済み
pop up menu & push button
You can retrieve the selections like this String1=get(handles.popmenu1,'String'); Selection1=String1{get(handles.popmenu1,'Val...

約6年 前 | 0

回答済み
How can I query the content of a cell?
The same way you get the contents of any cell array: use curly braces. YourCell{n}==0 isnan(YourCell{n}) isempty(YourCell{n})...

約6年 前 | 0

回答済み
Read Text File in Matlab
There are many ways to do this. One of the many ways is using the code below. It makes use of the readfile function which you ca...

約6年 前 | 0

| 採用済み

回答済み
How to get a period of cosinus function ?
Because this is homework, I won't provide a copy-paste ready solution. If you follow the example from the documentation for fft...

約6年 前 | 0

| 採用済み

回答済み
Extract Strings of different lengths
The code below assumes there is only a single match for 'ETSL'. StartMETAR=strfind(rawdata,'ETSL')-19; EndMETAR=strfind(rawdat...

約6年 前 | 0

| 採用済み

回答済み
keep scientific notation in plot title
If you want a specific notation you can enforce that with the sprintf function. Otherwise Matlab will _automagically_ pick a for...

約6年 前 | 0

回答済み
Unable to perform assignment because the left and right sides have a different number of elements.
tNow is a vector, so you can't store it in a scalar, which is what you are trying to do. You probably want to replace every inst...

約6年 前 | 0

回答済み
Separate values in a matrix greater than 0
So like this? isFlood=water_height>0;

約6年 前 | 0

| 採用済み

回答済み
HELP for Error in gui_mainfcn(sui_State, varargin {:})
You have a problem if you don't have the fig file of a GUIDE GUI. You need both the m file and the fig file. This is one of the ...

約6年 前 | 0

回答済み
Hold on in for loop doesn't work
You are calling figure inside the loop. You need to put that outside of the loop, or make sure another way that you have a singl...

約6年 前 | 0

回答済み
principle component analysis (PCA)
Read the documentation: coeff = pca(X) returns the principal component coefficients, also known as loadings, for the n-by-p dat...

約6年 前 | 0

さらに読み込む