Question


m file to instead save button in set path dialog
Go the Home tab and, in the Environment section, click Set Path. Then we will open the Set Path dialog box, there is a 'Save' bu...

presque 6 ans il y a | 1 réponse | 0

1

réponse

Question


How to display Chinese character in gui table / command window
Hello, I want to display Chinese character in gui table or command window, how to do that? Such as I want "单位" displayed in co...

environ 7 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
New to Matlab, need help
Operators can't be omitted. If 'a=2', you want '4',then you need '2*a', not '2a'. And you'd better type your code in Matlab, you...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
What is this block?
Sign->Indicate sign of input. * The output is 1 when the input is greater than zero. * The output is 0 when the input is eq...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
simple loop option to reduce code
T=0.25; t{1}=-3*T/12:.001:T/12; for r=2:6 t{r} = t{r-1}(end):.001: t{r-1}(end) + T/3; end

presque 11 ans il y a | 0

| A accepté

Question


Change a read-only file to writable
Hello everyone, I used 'copyfile' to copy an Excel file to current folder, because the source file is read-only, so the destinat...

environ 11 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
Separating values in cell arrays
Try this a{1}=[2 3]; [row,col] = size(a{1}); for i = 1:col for n = 1:row output{i} = ['1 ',num2str(...

environ 11 ans il y a | 2

| A accepté

Réponse apportée
how will we convert xls files into mat files please help me
Try this file = dir('*.xl*'); %dir excel filename = file.name; %filename_excel excel_path = [pwd, '\', fil...

environ 11 ans il y a | 0

| A accepté