Mauro Fusco
Followers: 0 Following: 0
Application Engineer
Automated Driving, Control Systems
Network Control & Code generation
Feeds
답변 있음
How to plot 3D line graph?
Hi, you may want to check out commands like help mesh or help surf : https://it.mathworks.com/help/matlab/ref/mesh.htm...
How to plot 3D line graph?
Hi, you may want to check out commands like help mesh or help surf : https://it.mathworks.com/help/matlab/ref/mesh.htm...
5년 초과 전 | 0
답변 있음
Trouble with Importing Data
Maybe, it helps you to know that you can use the load function in your script directly, see: https://it.mathworks.com/help/matl...
Trouble with Importing Data
Maybe, it helps you to know that you can use the load function in your script directly, see: https://it.mathworks.com/help/matl...
5년 초과 전 | 0
답변 있음
Vehicle Dynamics Blockset and Unreal Engine: Loading AutoVrtlEnv.uproject () in the Unreal Engine Editor.
This problem has been solved by Mathworks with the release of May 2019, which contains the missing files.
Vehicle Dynamics Blockset and Unreal Engine: Loading AutoVrtlEnv.uproject () in the Unreal Engine Editor.
This problem has been solved by Mathworks with the release of May 2019, which contains the missing files.
5년 초과 전 | 0
답변 있음
stateflow control stuck in the default block
Looking at your flow chart, once that the superstate "addition" is reached (when this happens you can see blue border, as in you...
stateflow control stuck in the default block
Looking at your flow chart, once that the superstate "addition" is reached (when this happens you can see blue border, as in you...
5년 초과 전 | 0
답변 있음
How do is use Simulink with G29 Logitech Wheel to get input ?
Hi, it seems that you need Simulink Real-Time, which provides the following block to read inputs from Logitech G29 Steering-Whe...
How do is use Simulink with G29 Logitech Wheel to get input ?
Hi, it seems that you need Simulink Real-Time, which provides the following block to read inputs from Logitech G29 Steering-Whe...
5년 초과 전 | 0
답변 있음
Vehicle Dynamics Blockset and Unreal Engine: Loading AutoVrtlEnv.uproject () in the Unreal Engine Editor.
There is an update from Mathworks, coming around the 15th of May 2019, that should solve this problem. At the moment, the plugin...
Vehicle Dynamics Blockset and Unreal Engine: Loading AutoVrtlEnv.uproject () in the Unreal Engine Editor.
There is an update from Mathworks, coming around the 15th of May 2019, that should solve this problem. At the moment, the plugin...
5년 초과 전 | 1
답변 있음
Why do I get "Array indices must be positive integers or logical values"
Arrays in Matlab are indexed starting from 1. Just replace xi = linspace(0,100); with xi = linspace(1,100); and it will not g...
Why do I get "Array indices must be positive integers or logical values"
Arrays in Matlab are indexed starting from 1. Just replace xi = linspace(0,100); with xi = linspace(1,100); and it will not g...
5년 초과 전 | 1
| 수락됨
답변 있음
Find max value in each column of a 6x5 matrix without using built in matlab functions.
Hi, based on your code a few modifications will make it work: A=randi(100,6,5) maxvalue = zeros(1,5); for columns=1:5 ...
Find max value in each column of a 6x5 matrix without using built in matlab functions.
Hi, based on your code a few modifications will make it work: A=randi(100,6,5) maxvalue = zeros(1,5); for columns=1:5 ...
5년 초과 전 | 0
| 수락됨
답변 있음
Simulink and script error
Probably this script new_system.m is called in the InitFcn or PreLoadFcn of your model (go to Model Explorer ->InitFcn or PreLoa...
Simulink and script error
Probably this script new_system.m is called in the InitFcn or PreLoadFcn of your model (go to Model Explorer ->InitFcn or PreLoa...
5년 초과 전 | 0
답변 있음
MIMO differential models, State Space representaion problem
ss(A,B,C,D) refers to the form x_dot = A_ss x+B_ss u; y = C_ss x + D_ss u (i used _ss to distinguish these matrices for the ss()...
MIMO differential models, State Space representaion problem
ss(A,B,C,D) refers to the form x_dot = A_ss x+B_ss u; y = C_ss x + D_ss u (i used _ss to distinguish these matrices for the ss()...
5년 초과 전 | 0
질문
Vehicle Dynamics Blockset and Unreal Engine: Loading AutoVrtlEnv.uproject () in the Unreal Engine Editor.
Hi, I am exploring the Vehicle Dynamics Blockset Interface for Unreal Engine 4 Projects which contains AutoVrtlEnv.uproject - a...
5년 초과 전 | 답변 수: 2 | 0
2
답변답변 있음
Interact with simulink from Matlab
Hi, you can use sim('model.slx',PARAMETERS) to simulate your model. You can also specify the duration of your simulation. Once ...
Interact with simulink from Matlab
Hi, you can use sim('model.slx',PARAMETERS) to simulate your model. You can also specify the duration of your simulation. Once ...
거의 6년 전 | 0
답변 있음
How to get MATLAB to recognize my Thorlabs Scientific Camera Link Camera?
Hi, I am not quite sure if your specific camera is supported, but have you tried to install this support package? https://nl...
How to get MATLAB to recognize my Thorlabs Scientific Camera Link Camera?
Hi, I am not quite sure if your specific camera is supported, but have you tried to install this support package? https://nl...
거의 6년 전 | 0
답변 있음
Plotting two sets of 3D points on same graph
Hi, you can use, for example, mesh to make two surfaces representing Z values over the X,Y grid. For example (assuming X,Y , a...
Plotting two sets of 3D points on same graph
Hi, you can use, for example, mesh to make two surfaces representing Z values over the X,Y grid. For example (assuming X,Y , a...
거의 6년 전 | 0
질문
Open Pattern Wizard for existing Flow Chart
Hi, I am wondering if there is a way to re-open the pattern wizard (see picture below for an example) of an existing flow chart...
거의 6년 전 | 답변 수: 1 | 0
1
답변질문
Simulink Logging: log (i.e. send to workspace) separated datasets for multiple instances of reference models (without using to Workspace blocks)
Hi, I am using the Simulink Logging (Matlab2017b) (by logging selected signals). These signals have the same name in diffe...
거의 6년 전 | 답변 수: 0 | 0
0
답변답변 있음
Delay block with vectors
Hi, see the picture below for a solution. The initial condition has to be set consistently with the number of samples of the d...
Delay block with vectors
Hi, see the picture below for a solution. The initial condition has to be set consistently with the number of samples of the d...
거의 6년 전 | 0
답변 있음
Select values on x axis corresponding to a y axis value
Let's say that your curve is described by the vectors x and y (I imagine that you obtain that curve via plot(x,y)). Then you ca...
Select values on x axis corresponding to a y axis value
Let's say that your curve is described by the vectors x and y (I imagine that you obtain that curve via plot(x,y)). Then you ca...
거의 6년 전 | 1
| 수락됨
질문
Hardware Setup - Select Your Android Device : adb.exe has stopped working
Hi, I have been trying to setup the android hardware with androidhwsetup. The process goes ok until I have to select the devic...
거의 6년 전 | 답변 수: 1 | 0
1
답변답변 있음
How can I install maxplus algebra toolbox in my matlab ?
Hi, does this toolbox work also with Simulink?
How can I install maxplus algebra toolbox in my matlab ?
Hi, does this toolbox work also with Simulink?
거의 7년 전 | 0