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...
約6年 前 | 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)...
回答済み 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...
約6年 前 | 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');...
約6年 前 | 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...