Risposto
How to add a second x-axis on top in plot?
<https://de.mathworks.com/matlabcentral/fileexchange/317-plotxx-m this> may be the function you are searching for

oltre 4 anni fa | 0

Risposto
How can I resample 3051.7578Hz data in 1000Hz?
use the interp1() function, it can also deal with non uniformly sampled data

oltre 4 anni fa | 0

Risposto
can anyone explain how to do this
so if you put 8kg on the spring it moves 175mm down and does not move further. this means there is a force equlibrium between th...

oltre 4 anni fa | 0

Risposto
time scaling, how to remove fraction in the below code? or give another code for discrete x[0.5n] ?
if you want x[0.5n] you have to calculate n1=1/0.5 * n

oltre 4 anni fa | 0

Risposto
Trying to use retime to sum daily values, but I don't want days that only have NaN values to become 0
weird, the normal behavior of sum is giving NaN if at least one of the summed values is NaN. try @sum instead of 'sum' and if th...

oltre 4 anni fa | 0

Risposto
How to shift all the pixels position by a specific function and recreate the image of shifted pixel values?
for the shifting have a look into circshift() which allows you to shift all elements by specific amounts along x and y. for t...

oltre 4 anni fa | 0

Risposto
Subtracting a value from a table column
small example: % table with Var1 and Var2 a=table((1:1000)',(2001:3000)'); a.Var1(a.Var1>360)=a.Var1(a.Var1>360)-360

oltre 4 anni fa | 0

Risposto
How do you select elements of one cell array based on the contents of another cell array?
lower your aim value by half your error interval and half your error interval -> 0.250-(0.02/2)+0.02/2 & 0.250-(0.02/2)-0.02/2

oltre 4 anni fa | 0

Risposto
How can i get variable from loop and then use it.
use l(1)=x instead of l(1)=0;

oltre 4 anni fa | 0

Risposto
Filter out combinations of letters
do you mean the case if the three letters that occur are D, I and C? in=['D3I2C7';'B4H8R1']; out=regexprep(cellstr(in),'D.I.C....

oltre 4 anni fa | 1

| accettato

Risposto
Automatically fit a circle on an arc in image and to plot the circle in the image.
This may help you

oltre 4 anni fa | 1

| accettato

Risposto
How to convert A= [13;8;12;4;8;1;13;0;10;13;1;6;14;13;1;14;11;9;9;10;10;15] to B= [3 0 0 1 0 1 0 2 2 3 1 1 4 2 1]
use histcounts with integer bin method histcounts([13;8;12;4;8;1;13;0;10;13;1;6;14;13;1;14;11;9;9;10;10;15],'BinMethod','intege...

oltre 4 anni fa | 0

Risposto
How to delete certain values below a function/plot?
do you mean you want to remove every y hat is smaller than gps? x(y<=gps)=[]; y(y<=gps)=[]; plot(x,y);

oltre 4 anni fa | 0

| accettato

Risposto
How to convert "cell array" to "character array"
the format 'A1' 'B1' 'C1' is not possible with character array, but 'A1B1C1' is possible: asCell={'A','B','C'}; charArray=[asCe...

oltre 4 anni fa | 0

Risposto
Populate cell array with matrix that changes for each entry without a for loop
i suggest generating the matrix with the kronecker product and then converting into cell array: bValues=[1 4 8 2; 3 87 1 4]; t...

oltre 4 anni fa | 0

Risposto
Deleting files downloaded during partial installation
you can try deleting the temporary files located in %userprofile%\AppData\Local\Temp and %systemroot%\Temp

oltre 4 anni fa | 1

| accettato

Risposto
read multiple excel files with beginning part of file name being similar
more something like that? for type=1:4 basepath='C:\Users\R101951\Desktop\RB\New folder\'; currFile=dir([basepath 'TH...

oltre 4 anni fa | 0

Risposto
import images with timestamps label
this stores all file names without the '.jpg' ending in the cell array 'names' names=erase({dir('my/path/to/images/*.jpg').name...

oltre 4 anni fa | 0

| accettato

Risposto
how to add or embed numbers (e.g 1 2 3 ...) into a binary image?
what exactly is your goal? do you want to insert binary numbers into the binary image or are you ok with a binary image as base ...

oltre 4 anni fa | 1

Risposto
How to create moving text
you can move the text every now and then by changing the coordinates. e.g. data=randi(42,100,1); m=mean(data); plot(data); ...

oltre 4 anni fa | 1

| accettato

Risposto
Why Sounds in MATLAB (for example 'RockGuitar-16-44p1-stereo-72secs.wav') contains two identical rows of matrix?
there are two channels, one for the right speaker, one for the left (stereo). a mono signal would be one channel only, if you pl...

oltre 4 anni fa | 0

Risposto
VERTCAT error when trying to populate array
try putting {} around the second line of concatenation dataCollectionAllCoke = [headings; {pixelValue, allCoke_R, allCoke_G...

oltre 4 anni fa | 1

| accettato

Risposto
identifying and removing a double within a structure
maybe you thought about something like that. myStruct(1).myDoubleField=[1 2]; myStruct(2).myDoubleField=[1 2 3]; mySt...

oltre 4 anni fa | 0

Risposto
Multiplying cell with a function call
trips is a cell array where each cells contains doibles you created earlier. if you want to calculate something with the content...

oltre 4 anni fa | 0

Risposto
Audio Feature Extraction from .MAT file instead of .Wav files
if you have already stored the audio data in a mat file (meaning you have it already in an ordinary matlab variable) you can jus...

oltre 4 anni fa | 0

Risposto
Can I insert more than one people to receive the alert email when my ID more than my setpoint?
yes you can, e.g. the sendmail() function supports multiple email addresses like sendmail({'recipient@someserver.com','reci...

oltre 4 anni fa | 0

Risposto
High pass (and low pass) image filters with cutoff in “cycles per image”
habe a look into <https://de.mathworks.com/help/images/linear-filtering.html this> under frequency domain filtering. there you c...

oltre 4 anni fa | 0

Risposto
How to modify one line of a matrix and get the entire matrix for result within the modification?
just assign the values like that: x=[1 2 3; 4 5 6]; x(1,:)=-x(1,:)

oltre 4 anni fa | 1

| accettato

Risposto
adding two ticks to form a horizontal line
if you want to add a horizontal line to you plot you can use yline. if you want a ytick at that specific value you can write yl...

oltre 4 anni fa | 0

Risposto
what is the power of noise?
you can find the definition of the snr for example in the snr() documentation

oltre 4 anni fa | 0

Carica altro