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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 1

| akzeptiert

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

etwa 6 Jahre vor | 1

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

Beantwortet
Average multiple vectors with different lengths
Pad the shorter vectors with NaN and use the 'omitnan' flag in mean.

etwa 6 Jahre vor | 1

| akzeptiert

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

etwa 6 Jahre vor | 0

Beantwortet
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})...

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

Beantwortet
Separate values in a matrix greater than 0
So like this? isFlood=water_height>0;

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

Mehr laden