質問


find the cell nan or not
I am trying to check the cell is nan or not I have a cell array a = {'ddd_Dds_1_dffs'} when i use like this cellfun(@isnan,a...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


String starting with letter 's' from cell array
I have a cell array a = {'sa_dfa','soft_df1','sock_dd2','saz_dfa_d2','suu_f'} How to extract only the string starting with le...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


Uppercase string from the cell array
I have a cell array a = {'AA_DFA_DD' ,'DSFA_dfaf' ,'DDDD' , 'DFE1' ,'dfs_DD'} How can extract only the upper case string from...

8年以上 前 | 2 件の回答 | 1

2

回答

質問


Find the string from the cell array
I have a cell array containg a = {'s_ddfa_af' ; 'adfa' ; 'f_dsfa_dasf_sdf'; 'asdf_dd'}; I need to extract the string start...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


Normalizing the Histogram Plotted
I have plotted the histogram for set of data using the command hist(data,50) When I do it i am getting the histogram like thi...

8年以上 前 | 1 件の回答 | 0

1

回答

質問


Extracting the text from pdf file
Is it possible to extract the text from pdf file using matlab script? I need to parse through the pdf and extract the particu...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


combining three cell array of different sizes
I have three cell arrays: a = {'ball' ; 'cake' ; 'ice'} b = {'home'} c = {'car'} I know if I use d =[a , b, c] wil...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Removing the string from cell array
a = {'fdf_faf' ; 'dfaf_dfa' ; 'dfadf_dfaf'; 'dfaf_fdaf';'daf_dfaf';'dfaf_fff'}; index = find(strncmpi(a,'dfaf',4)) index ...

9年弱 前 | 2 件の回答 | 0

2

回答

質問


Draw Directed or undirected graph
How can i draw the directed or undirected graph apart from using the command biograph? Because i dont have a toolbox that con...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Extract the number within the bracket
I have string a = 'a_b_c_d(1.0)' I need to extract the number within the bracket. my answer shoud be b = '1.0' how can ...

9年弱 前 | 2 件の回答 | 0

2

回答

質問


Similar to unique, how can i use for case insenisitive
For example I have cell array a = { 'abc' , 'aBc' , 'xyz' , 'Xyz'} now i need to remove the duplication. As unique is ...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


command similar to setdiff for case insensitive
Is there any command similar to setdiff for case insensitive. As setdiff is case sensitive? for example a = {'car','book,'gla...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Comparing the two structure
I need to compare the two structure and remove the matching fieldname. Is it possible? How can i do it? Thanks a lot

9年弱 前 | 2 件の回答 | 0

2

回答

質問


converting cell array to matrix
I have a cell array a = {'a' , 'b' , 'c' ,'d' , 'e'} I need to convert a cell array to matix with ','(comma in between) my...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


shifting column cell array of string into row
I have a cell array of string c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... } so i have c = 50*1 now i need to shift the cell a...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


how to use cell function to convert string to number
I have a cell array a = { 'a' '0' ; 'b' '1' ; 'c' '2' ; 'd' '3'} so a = 'a' '0' 'b''1' 'c''2' ...

9年弱 前 | 2 件の回答 | 0

2

回答

質問


color the specific simulink block
<</matlabcentral/answers/uploaded_files/31374/Untitled.png>> How can i change the color of the particular simulink block from...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Changing the size and position of the simulink block
How can I change the position and size of the simulink block from the matlab command window? sys = 'testmodel'; new_system...

9年弱 前 | 2 件の回答 | 0

2

回答

質問


changing the name of the excel file using ActXserver
How can I change the name of the excel file using Actxserver? for example science.xls to maths.xls Is it possible?? ...

9年弱 前 | 2 件の回答 | 0

2

回答

質問


Regarding the Actxserver spec
open_file = Activate.Workbooks.Open(fullfile(pwd, 'DD.xlsx'),0,false) In the above expression what does 0 and false indic...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Clearing the cell array at the end of the loop
I need to clear the cell array at the end of the loop. data ={'one','two','three'} element = {'four','five','six'} for a...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Write operation using Activexserver command
I have 4 array, a = [1 2 3] b=[4 5 6] c=[8 9 10], text=[num1 num2 num3] I need to write to excel sheet where a in shee...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Color the particular row of the excel sheet
<</matlabcentral/answers/uploaded_files/30562/Capture.JPG>> I need to color the particular row of the excel sheet. How can i ...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Changing the name of the sheet in excel
I want to change the names of sheets in excel and then i need to perform the write operation on those sheets? Is it possible ...

9年弱 前 | 2 件の回答 | 1

2

回答

質問


replace the string a cell array with empty cell
I have a cell array a = {'abc' ; 'def' ; 'ghi' ; 'def' ; 'xyz'} I need to replace a 'def' with empty cell. so my answer sh...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Removing square brackets from cell array
I have cell array a = {'[0' ; '[1' ; '[10'} I need to need remove the square bracket from cell array my new cell array s...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


Combine two cell array of different dimension
I have a two cell array A = {1,2}, B={4;5;6} I need the result as one single array C = { 1 2 4 ...

9年弱 前 | 3 件の回答 | 0

3

回答

質問


Replace the element in the cell array with space inbetween
I have a cell array element = {'num riqu' ; 'num riqu' ; 'con tant' ; 'con tant'} I need to replace num riqu = numeric ...

9年弱 前 | 2 件の回答 | 0

2

回答

質問


Splitting the string using regular expression or string split
'a_bb_ccc_ddd_eeeeee_ffff_gg_h_i' I have a string like this. I need to split the string as a_bb_ccc ddd_eeeeeee ...

9年弱 前 | 1 件の回答 | 0

1

回答