Respondida
Changing the font size in the mask gives warning
You may not realize, text() used in Simulink Mask doesnot have full functionality as in MATLAB. See this note in the doc. While...

casi 3 años hace | 0

Respondida
How to select specific data rows from neighboring column
index=and(T(:,1)>=21, T(:,1)<=30); x=T(index,4); y=T(index,3); z=T(index,2);

casi 3 años hace | 1

| aceptada

Respondida
loss of data/missing elements in array after a for loop
If you don't pre-allocate idx_matrix_bool_mat_filt, this could happen. Do idx_matrix_bool_mat_filt=TD_32_colon before the loop. ...

casi 3 años hace | 1

| aceptada

Respondida
How to change variable name in MAT file
Save the .mat file as what it is from the source. Use a=load('*.mat') to load it. "a" would be a structure. The variable is in a...

casi 3 años hace | 1

| aceptada

Respondida
Dialog box in the mask for different equations
A few steps. Change the name of the "Interpreted MATLAB Function" block to be "MyFun", so it's easy to reference it in the code...

casi 3 años hace | 1

| aceptada

Respondida
How can I write an array to a txt file such that it looks like MATLAB syntax
use mat2str(), write the string to the text file A = [1 2 3 4; -1 0 1 2; 3 9 5 7; 12 100 1000 1012]; str=mat...

casi 3 años hace | 0

| aceptada

Respondida
mapping between two different matrices
a=[1 2;3 4;5 6]; b=[1 2 3;1 2 3;1 2 3;1 2 3;1 2 3]; c=[1 2]; [~,index]=ismember(c,a,'rows'); b(:,index)

casi 3 años hace | 0

| aceptada

Respondida
How to store all the sequential signals generated during the Simscape simulation in Simulink and access those signals inside the function block?
The "Buffer" block? https://www.mathworks.com/help/dsp/ref/buffer.html

casi 3 años hace | 0

Respondida
Simlink pulse generator rise/fall time
Use a "Repeating Sequence" block and provide the time-value pairs. If your version of Simulink has the "Signal Builder" block, a...

casi 3 años hace | 0

Respondida
Moving average with a time window 600s but using a variable step modeling setting
Same question? https://www.mathworks.com/matlabcentral/answers/1917080-discrete-average-on-simulink

casi 3 años hace | 0

| aceptada

Respondida
TO WORKSPACE BLOCK IS NOT CREATING NEW VARIABLE TO WORKSPACE
It is saved in "out.simout", instead of "simout" if your variable name is "simout", if every other setting is by default. You ar...

casi 3 años hace | 0

Respondida
How to solve the problem of finding an unconnected output signal line on 'untitled/radar' (output port: 1)
The "Camera" and "Radar" block both have un-connected output signal lines (the red dotted arrow). Connect them to something usef...

casi 3 años hace | 0

Respondida
How to create a list of all variable names/block parameter values used in a Simulink model?
This might be it. Model Data Editor

casi 3 años hace | 0

Respondida
Where can I find Simulink block element identifier?
get_param(FullBlockPath, 'SID') Please see this Q&A. https://www.mathworks.com/support/search.html/answers/601471-how-can-we-u...

casi 3 años hace | 0

| aceptada

Respondida
I have data for each milli second. How can I average the 1000 samples and convert in to 1 sec? I got 322 sec data. 1K samples for each second.
Data=(1:25)'; Ten=10; NofData=floor(length(Data)/Ten)*Ten; temp=reshape(Data(1:NofData),Ten,[]) av=mean(temp)

casi 3 años hace | 0

Respondida
Add brake block to simulink
It is a "Switch" block, inside Simulink, Signal Routing.

casi 3 años hace | 0

| aceptada

Respondida
How to concatenate (insert, add) a scalar value into a vector using the Simulink Matlab Function block?
With variable "A" in the base workspace, you can run "diff(A)" in Command Window to get the result. If you want to use the same...

casi 3 años hace | 0

Respondida
Making a datetime vector with a leap year
Do it directly by specifying the starting and ending datetime. d1=datetime(2021,1,1,0,0,0); d2=datetime(2021,12,31,23,0,0); s...

casi 3 años hace | 0

Respondida
Display Simulation Time at 'First' Falling edge of a signal only in Simulink
You can add an Enable block to make it Enabled Triggered subsystem. Add a counter to enable it only before the first trigger. ...

casi 3 años hace | 0

Respondida
Facing Issue with Simulink Bus Creator Block
Double click the signal line out of the Constant block and type in the signal name. Constant "block name" is not the same as s...

casi 3 años hace | 4

| aceptada

Respondida
'String scalar or character vector must have valid interpreter syntax' in waitbar
What is the issue? I don't have any error message in R2022b. h=waitbar(0.5,'c:\abc\xyz')

casi 3 años hace | 0

Respondida
Matlab / Simulink Block Error
The "State Name" parameter of the Integrator block, where you set as "V0", should not be a value. It is a "Name". It should be s...

casi 3 años hace | 1

| aceptada

Respondida
I am unable to find how to fix the error for the message 'Inferred size ('[7]') for data 'yOut' does not match specified size ('[3]')' for my PID controller problem
You have to straighout your design first. The reference has three elements, thus the feedback, the error and the PID controller ...

casi 3 años hace | 0

| aceptada

Respondida
simulink source that follows a sequence until it reaches a constant value
You have the arry of time-value pairs. Use them in a 1-D lookup table. Use the simulation clock as the input, specify "Clip" for...

casi 3 años hace | 0

| aceptada

Respondida
Why am i getting complex number?
Are you sure you got complex numbers? Complex numbers are like below. clear i j; i j a=2+3i b=4-5j

casi 3 años hace | 0

Respondida
Simulink State Space Error
Your A, B, C, D values specify that the size of the input is 2x1 (two inputs) but the Step block provides only one input.

casi 3 años hace | 0

Respondida
Run a script on all files in a folder/subfolders
I think the approach here can be used. https://www.mathworks.com/matlabcentral/answers/1934245-want-to-iterate-over-subfolders-...

casi 3 años hace | 0

| aceptada

Respondida
Load data from *.mat file with mask
For string parameters like folder and file name, you might not be able to pass it from the mask to the inside block parameter. I...

casi 3 años hace | 0

Respondida
Convert osm data to xodr
Mathworks' RoadRunner can do it but if you don't have a license, try the open-source SUMO with its netconvert. https://sumo.dlr...

casi 3 años hace | 0

Respondida
Parameters of FunctionCall block in Simulink
Click "Help" to bring up the document. It is there. get_param(gcb,'FunctionPrototype') 'InputArgumentSpecifications' 'OutputA...

casi 3 años hace | 0

Cargar más