Risposto
How to select a specific column in matrices?
A = ones(4) B = ones(4)*2 C = ones(4)*3 D = ones(4)*4 X = [A(:,2), B(:,2), C(:,2), D(:,2)]

quasi 3 anni fa | 1

Risposto
Reading from Google sheeets using Matlab
Have you tried looking at the existing answers/solutions to this problem? https://www.mathworks.com/matlabcentral/answers/49624...

quasi 3 anni fa | 1

| accettato

Risposto
Rearrange a CSV file
Assuming your data has headers to identify the column names as A...X: t1 = readtable('abc.csv'); t2 = readtable('test1.csv'); ...

quasi 3 anni fa | 1

Risposto
Reading .xlsx data with header text
The readtable function works for both spreadsheet (.xlsx) and text files (.txt). It will also consider the first row as the hea...

quasi 3 anni fa | 0

Risposto
¿Como solucionar ? Not enough input arguments.
You need to run the script so that X is provided: >> erlate(X) Not: >> erlate

quasi 3 anni fa | 0

Risposto
How to get file names only when using dir()?
fileList = {fileList.name} If you want to remove the file extension: fileList = strrep(filelist, '.mat', '')

quasi 3 anni fa | 2

Risposto
import file with exponential numbers
format longE M = readmatrix('1.txt') See: https://www.mathworks.com/help/matlab/ref/format.html

quasi 3 anni fa | 1

Risposto
How to read data out of a .txt-File?
format longE T = readtable('textfile.txt', 'NumHeaderLines', 18); T = 3×2 table Var1 Var2 ...

quasi 3 anni fa | 0

Domanda


How can I get the error message from sldvrun when programmatically using Simulink Design Verifier?
I am using sldvrun in a script to run design error checking analyses on several models. When models encounter issues during the ...

quasi 3 anni fa | 1 risposta | 0

1

risposta

Risposto
How to give input as a text and read the number corresponding to that text from the excel sheet
data = readtable('Spreadsheet.xlsx'); entry = data(strcmp(data.MaterialName, 'zinc'), :); entry.MaterialTemperature

quasi 3 anni fa | 1

| accettato

Risposto
Triggering referenced models in Simulink
See "Triggered Sample Time" in: https://www.mathworks.com/help/simulink/ug/types-of-sample-time.html See "Conditions for Inheri...

quasi 3 anni fa | 1

| accettato

Risposto
I want to convert this python code to matlab code . How can i do it?
Perhaps some previous answers can help you: https://www.mathworks.com/matlabcentral/answers/416129-how-to-convert-python-code-i...

quasi 3 anni fa | 0

Risposto
block_diagram does not have a parameter named 'SaveOperatingPoint'
In 2018a models do not yet have the SaveOperatingPoint parameter.

quasi 3 anni fa | 0

Risposto
How to apply the func change color of Input port using Set param according to naming Convention?
for i = 1:length(A) name = get_param(A{i}, 'Name'); if regexp(name, '^Var_In_\d+$') set_param(A{i}, 'Backgrou...

quasi 3 anni fa | 0

Risposto
how to set this parameters and coverage settings for simulink model through script?
models = {'model1', 'model2', 'model3'}; for i = 1:length(models) m = load_system(models{i}); set_param(m, 'Sto...

quasi 3 anni fa | 0

| accettato

Risposto
using a variable to change destination path in movefile
Your first problem is that the first input into movefile should be a char array: movefile('C:/users/alast/Documents/LAB 5/image...

quasi 3 anni fa | 0

Risposto
Transition blockset in simulink
To swtch between the block you can use an If-Action subsystem, like the example here: https://www.mathworks.com/help/simulink/sl...

circa 3 anni fa | 0

Risposto
How to read an xls file in matlab which has latitude (suffixed with N), longitude (suffixed with E), time (prefixed with the month), and a value corresponding to latitude and longitude in it?
You can use regexprep to clean up the values: opts = detectImportOptions('Test.xlsx', 'NumHeaderLines', 2, 'VariableNamesRange'...

circa 3 anni fa | 0

| accettato

Risposto
How can I give main title for multi-graphs?
figure; plot(rand(5,1)); annotation('textbox', [0.45, 0.5, 0.5, 0.5], 'String', 'Global Title', ... 'FontSize', 14, 'Fo...

circa 3 anni fa | 1

Risposto
Replace missing cell entries without replacing whitespaces.
for i = 1:numel(A) if ismissing(A{i}) A{i} = 'REPLACED'; end end

circa 3 anni fa | 1

Risposto
Checking disjointness of Stateflow truth tables?
After waiting some years and looking into this several times, the answer is that disjointness checking is not supported.

circa 3 anni fa | 0

| accettato

Risposto
How can I apply labels to project files when the project references another project?
I asked MathWorks about this. Propagating labels from a referenced project is not currently supported.

circa 3 anni fa | 0

| accettato

Risposto
Callback function not found for dynamically created app UI component
I ended up contacting MathWorks support for this. The solution is to call the function like so: app.DropDown = uidropdown(app.U...

circa 3 anni fa | 1

| accettato

Domanda


Callback function not found for dynamically created app UI component
I would like to dynamically/programmtically create a uidropdown component that calls a function when its value is changed. Howev...

circa 3 anni fa | 3 risposte | 1

3

risposte

Domanda


What is the best way to count the occurrences of two table columns together?
I have a table that looks like this: >> A = {'A'; 'B'; 'C'; 'A'; 'C'; 'C'; 'B'}; >> B = {'x'; 'y'; 'z'; 'xx'; 'z'; 'z'; 'y'}; ...

circa 3 anni fa | 3 risposte | 0

3

risposte

Risposto
how to find the parameter name for any block in the simulink to use it in set_param command?
To programmatically find out what parameters a block has, get its handle: h = get_param(gcb, 'Handle'); or h = gcbh; and t...

circa 3 anni fa | 0

Risposto
How to read a variable in set_param function?
set_param('Transient/Gain', 'Gain', A)

circa 3 anni fa | 0

Risposto
How to collect cyclomatic complexity of linked block?
To break links to libraries, you need to change the 'LinkStatus' parameter. For example: set_param('linked_block_name', 'LinkSt...

circa 3 anni fa | 1

| accettato

Risposto
Citing MATLAB products or relative webpage
@Misc{miller2021simscape, author = {Steve Miller}, url = {https://github.com/mathworks/Simscape-Multibody-C...

circa 3 anni fa | 0

| accettato

Risposto
Modify Repmat function to concatenate array
If you want to understand how repmat works, take a look at the syntax and description in the documentation page: https://www.mat...

circa 3 anni fa | 0

Carica altro