Reordering variables in a table array
Let's say I have the table below. I want to reorder them by their ages. I tried to use
TSort.Age = sort(TSort.Age)
but it do...
대략 7년 전 | 답변 수: 1 | 0
1
답변
답변 있음 Word Count in a PDF file
Hi Ahmed, you can use extractFileText. You must choose a starter word and a finisher word, this word must be unique. Because, co...
답변 있음 Plotting one cycle of a wave
I believe axis() would work. I wrote an example code with a signal which has cycles.
x = 1:100;
signal = (1-cos(2*pi*0.01*x)...
대략 7년 전 | 0
답변 있음 Multiplication of sound and sinusoidal signal
The problem here is you take the t2 until 1 second, when your sound lasts more (or less) than 1 second
t2=0:1/Fs:1;
However i...
답변 있음 Reading Image/Audio Files of different types
Hi Pedro, you can find the supported types of both images and audios in the related pages of Matlab. Link:
https://www.mathwor...
대략 7년 전 | 1
답변 있음 Copy file from one directory to another
Maybe you can get parts of the filename by using
[filepath,name,ext] = fileparts(file);
and after that you can use directly ...
답변 있음 Add row and column headers to 3d matrix
Hi Kevin;
You may try this:
Z = zeros(165,168,59);
rowheader = cellstr('rowheader');
columnHeader = cellstr('columnHeader');...
대략 7년 전 | 0
답변 있음 How to do a summation of slides?
It is quite dubios what you are trying to say but if I understood a little correctly you may try
temp = [];
for i = 1:length(i...