回答済み
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...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 1

| 採用済み

質問


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...

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

1

回答

回答済み
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. ...

1年以上 前 | 0

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

1年以上 前 | 0

| 採用済み

質問


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...

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

1

回答

回答済み
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...

1年以上 前 | 1

回答済み
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...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 2

| 採用済み

質問


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 ...

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

1

回答

回答済み
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...

1年以上 前 | 1

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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 ...

1年以上 前 | 1

回答済み
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...

1年以上 前 | 0

回答済み
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 ...

1年以上 前 | 0

| 採用済み

回答済み
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)]...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 0

| 採用済み

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

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 0

| 採用済み

回答済み
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...

2年弱 前 | 1

回答済み
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...

2年弱 前 | 0

回答済み
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 ...

2年弱 前 | 0

| 採用済み

回答済み
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....

2年弱 前 | 0

回答済み
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 ...

2年弱 前 | 0

さらに読み込む