解決済み


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

約5年 前

解決済み


Create a cell array out of a struct
Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column: in: ...

約5年 前

解決済み


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

約5年 前

解決済み


Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'

約5年 前

解決済み


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

約5年 前

回答済み
Convert the Contents of matrix array (double) to single number (double) ?
Converted_Vect_Time_report = str2double(sprintf('%d',Vect_Time_style)) ;

約5年 前 | 1

| 採用済み

回答済み
how we write condition in for loop?
Increment of 1 for k = 1:1:j % Increment of 1 % do operations end Increment of 2 for k = 1:2:j % Incr...

約5年 前 | 0

回答済み
Rename an inport and outport of Subsystem
Use below code to Get what ever Output you wanted. If any further clarification needed ping me. % Rename an inport and outport ...

約5年 前 | 0

回答済み
How to delete entire row if any cell of the particular row is empty
Input : Matrix = [[{'a'};{'b'};{'c'};{''};{'b'};{'c'}],[{'a'};{'b'};{''};{'a'};{''};{'c'}],[{'a'};{''};{'c'};{'a'};{'b'};{...

約5年 前 | 0

送信済み


Simulink Alignment Tool - Auto Layout Subsystems - Function
Arranging the following blocktype (inports, outports ,from-goto blocks , terminator) connected to Subsystem.

約5年 前 | ダウンロード 8 件 |

Thumbnail

回答済み
anyway to compare date in Matlab
[~,Data] = dos('dir D:/test/abc.m'); Scanned_data = textscan(Data,'%s'); Date_modified = Scanned_data{1}{15};

約5年 前 | 0

回答済み
How to check the current line (debug)
For finding current line handle https://in.mathworks.com/matlabcentral/fileexchange/70643-gclh-get-handle-of-current-line

約5年 前 | 0

回答済み
How does one identify the current line being evaluated during execution?
For finding current line handle https://in.mathworks.com/matlabcentral/fileexchange/70643-gclh-get-handle-of-current-line

約5年 前 | 0

送信済み


gclh - get handle of current line
gcbl returns the handle/handles of the current line in the current system.

約5年 前 | ダウンロード 2 件 |

Thumbnail

回答済み
What is the order of reference models in Simulink?
Please use the below script to generate Execution Order... https://in.mathworks.com/matlabcentral/fileexchange/70642-generating...

約5年 前 | 0

| 採用済み

送信済み


Generating Sorted Execution Order (Order of Execution)
This File Generates Sorted Execution Order to find what executes in the order

約5年 前 | ダウンロード 1 件 |

回答済み
How to access data from structure
Please try this Command to get the 4th column A.B.C(:,4) % To get 4th column

約5年 前 | 1

| 採用済み

回答済み
convert a char array into a single char
Please specify with an example. You can use Empty_chars = char(' '*char(ones(360,4))) Reshaped = reshape(Empty_chars,36,40)...

約5年 前 | 0

回答済み
Comparing two tables and copy elements of table 2 into table 1
Use strcmp if the values are matching then add the values to the T and W column

約5年 前 | 0

回答済み
Generating a list of Simulink model's IOs
% Finding the Inputs Inports_path = find_system('DummyModel','BlockType','Inport'); Inputs = get_param(Inports_path,'Name'); ...

約5年 前 | 0

| 採用済み

送信済み


Write Cell array in double data into Cell array
Converting excel_write (Cell array containing matrix of double data.) to Cell array which can be used to write in excel file.

約5年 前 | ダウンロード 1 件 |

回答済み
Write data to text file not containing punctuation marks?
Use regexprep or delete the found character using regexp found =[]. Please find attched the code below for Removing all the pun...

約5年 前 | 1

| 採用済み

質問


Delete all unconnected Lines from simulink diagram ?
Answer: delete_line(find_system(Execution_level, 'FindAll', 'on', 'Type', 'line', 'Connected', 'off'))

約5年 前 | 0 件の回答 | 6

0

回答