Risposto
Finding a double in the workspace by name and assigning it to a new variable
this is for a single entry: ID=100; evalin('base',strcat('desired_variable_name=p',string(ID))) i don't know what ID looks li...

oltre un anno fa | 0

| accettato

Risposto
How to create input and output port in Simulink and then connect them using Matlab script
Here is a link to the relevant mathworks documentation: https://ch.mathworks.com/help/simulink/ug/approach-modeling-programmatic...

oltre un anno fa | 1

| accettato

Domanda


I was late to a mathworks webinar
I registered for a mathworks webinar (Programming Robots with ROS and ROS2 using MATLAB) but i couldn't make it in time to watch...

oltre un anno fa | 1 risposta | 0

1

risposta

Risposto
Extract numerator and denominator from transfer function without manually adding it to the program?
supposing that your original function is defined as a transfer function model you can access its properties using dot notation. ...

oltre un anno fa | 0

Risposto
Simulink background color via CLI
after going through basically every property of the model with: get_param(modelName,'ObjectParameters') i found that the back...

oltre un anno fa | 0

| accettato

Domanda


Simulink background color via CLI
i know that in order to change simulink bakcground you right click > Canvas > choose a color i also know that you can set vis...

oltre un anno fa | 1 risposta | 0

1

risposta

Risposto
Plot a plane from 3 points
basically after debugging i got this results: mesh(X,Y,Z) fails because Z is a 201x201 whose elements are ALL Inf. This is ca...

oltre un anno fa | 1

Risposto
Software Version Control in Simulink: SVN vs GIT
My team has always used SVN and now we are transitioning to GIT. The best pro git argument is the well intergrated gui. Projec...

oltre un anno fa | 0

| accettato

Risposto
Recommended practises for using git when collaborating using MATLAB/Simulink
I just did exactly the same thing with my team earlier this year and this is what i've learnt so far: Establish ownership early...

oltre un anno fa | 2

| accettato

Domanda


xlst template for simulink xml parsing
i'm trying to export a simulink webview (without the use of the report generator toolbox). My thought was to convert the .slx ...

oltre un anno fa | 1 risposta | 0

1

risposta

Risposto
Change component size in system composer
via script: scTmpArc=open_system('scTmpArc') %sxTmpArc is the name of your system composer file set_param('scTmpArc/.../..',po...

oltre un anno fa | 1

Risposto
How to set the state with different variables in properties?
use a struct: state.schedule= []; state.path=[]; state.completionTime=Inf; state.computerDuring=0; this will create a struc...

oltre un anno fa | 0

Risposto
How to find and replace .tif in XML file In MATLAB
Try this: xmlFileDOM = xmlread('totallyAXml.xml'); %reads xml to dom xmlFileStr=string(xmlwrite(xmlFileDOM)); %cast dom to st...

oltre un anno fa | 0

Risposto
how to find the value of an index in a for loop
if you just want to see how it varies numerically, print it: for i2=1:length(grid_ang) angsel=grid...

oltre un anno fa | 0

Risposto
Why do I get the error "The specified module could not be found" when opening Simulink?
Try to use the Dependency Walker as suggested here Why do I receive a "specified module could not be found" error while running ...

oltre un anno fa | 1

Risposto
Can't find control system tuner in simulink
Check if the installation was successful: Why are some of my Apps missing even though I have installed all of my toolboxes? - MA...

oltre un anno fa | 0

Risposto
how to fix half saved image problem in pdf form
i think it's working correctly. Be careful because with this line: set(gcf, 'WindowState', 'maximized'); you specify that the ...

oltre un anno fa | 0

| accettato

Risposto
Finding two similar Matrix in a whole set
this is for similarity: mtxs={[magic(4)],[randi(4,4)],[magic(4)],[randi(4,4)],[magic(4)],[randi(4,4)],[randi(4,4)],[randi(4,4)]...

oltre un anno fa | 0

Risposto
Place two 3d plots in the same grid so they can be compared
Supposing that the mesh function is called properly, the syntax seems alright, have you though that they may be coincident? l...

oltre un anno fa | 0

| accettato

Risposto
error in movstd function
as the error says you are using a table as input when it is not a supported. According to the documentation (end error) the supp...

oltre un anno fa | 0

| accettato

Risposto
Can I simulate underwater robots with Simscape Multibody?
yes you can. Autonomous Underwater Vehicles – MATLAB & Simulink - MATLAB & Simulink (mathworks.com)

oltre un anno fa | 0

Risposto
how to find location of nans in a matrix
supposing you matrix is named 'm': nan=isnan(m); %returns 1 where NaN [rIdx,cIdx]=find(nan==1); %returns row and col indeces w...

oltre un anno fa | 0

Risposto
How to change a parameter in a model
Here is one solution: elements = {-10:1:10, -10:1:10}; %cell array with N vectors to combine combinations = cell(1, numel(el...

oltre un anno fa | 0

Risposto
Replace NaN's in timeseries with longterm median for specific dates
Try to see if this helps, it's conceptually the same thing but with the mean https://ch.mathworks.com/matlabcentral/answers/189...

quasi 2 anni fa | 0

| accettato

Risposto
How to solve this worning in simulink
Without knowing anything about your code is hard to tell. See this thread for more information: https://ch.mathworks.com/matla...

quasi 2 anni fa | 0

| accettato

Risposto
prevent matlab from triggering alarm sounds in windows 10
i will be that guy... i just tried the: beep off and it works in matlab R2022a. Otherwise i have look at some past discussio...

quasi 2 anni fa | 1

Risposto
simulink for simulating a graph
Refer to this question for a solution:https://ch.mathworks.com/matlabcentral/answers/154695-how-to-use-symbolic-variables-and-fu...

quasi 2 anni fa | 0

Risposto
How to combine desired cropped image to another image?
the easy solution is to find a mask image with a transparent background (format files as .png and .svg support it). the medium ...

quasi 2 anni fa | 0

| accettato

Risposto
I am having a hard time getting the matrix multiplication to work due to incompatible matrix sizes.
I found the issue, i'll guide you through it but unfortunatly i cannot solve it for you since i'm not sure on what your goal is....

quasi 2 anni fa | 0

Risposto
Execution of script as a function is not supported
there is no definition of the function mix_2d_lp_fonc(), at least not in the file you shared. It's just the name of the script ...

quasi 2 anni fa | 0

Carica altro