Beantwortet
Heatmap - how to get the plotted colors
camp = colormap https://www.mathworks.com/help/matlab/ref/colormap.html

mehr als 2 Jahre vor | 0

Beantwortet
Which Block for Frequency as input signal for a prismatic joint?
You can apply force or impose motion for a Prismatic Joint. Use SImulink blocks to generate the signal you want and feed the sig...

mehr als 2 Jahre vor | 0

Beantwortet
Extracting natural frequencies and mode shapes from a Simscape Multibody model
You probably can linerarize your Simscape model and calculate the eigenvalues and eigenvectors.

mehr als 2 Jahre vor | 0

Beantwortet
How to design controller for models in Simscape multibody?
You can use MATLAB 'linearize' command to lineraize Simscape plant models, [sys, ~, info] = linearize(plantModel, opPoint). The ...

mehr als 2 Jahre vor | 0

Beantwortet
What can I do to import a complete assembly into Multibody if I'm using Fusion 360?
Can you export the model to a CAD software that supports Simscape Multibody Link?

mehr als 2 Jahre vor | 0

Beantwortet
I want to use variable as an input in a single run.
Try to feed the signal to the 'To Workspace block' directly to other blocks.

mehr als 2 Jahre vor | 0

Beantwortet
Finding pitch, yaw for a delta three wheeler using simscape or vehicle dynamics blockset
The Vehicle Body block only describes vehicle longitudial dynamics. You need a block that handle lateral dynamics to get roll an...

fast 3 Jahre vor | 0

Beantwortet
how to change simulink matlab (bellow) to code matlab? How do I enter the initial value?
https://www.mathworks.com/help/matlab/ref/ode45.html

fast 3 Jahre vor | 0

Beantwortet
elevator motor modelling code
You need to model the system with a differential equation: . Solve the equation with MATLAB or Simulink for given N(t).

fast 3 Jahre vor | 0

Beantwortet
Contact Forces/Torques for Robotics Applications
The Spatial Contact Force Block will automatically apply the forces to the elements connected to its two ports. You don't need t...

fast 3 Jahre vor | 0

Beantwortet
3D matrix with equation
does mean ? You can calculate the result using three loops on i, j, and l.

fast 3 Jahre vor | 0

Beantwortet
How to interpolate when we have two different sizes
temps_B and B have different size. They need to be the same size.

fast 3 Jahre vor | 0

Frage


Separate Simulink block name into several lines
How can I separate the name of a Simulink block into serveral lines in R2020b? The Retuen key doesn't seem to work in this new r...

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How can I get the value by choosing 't' and 'x'? ,How should I set the graph range?
Move the plot command outside the loop. Store the calculation at each time step in a buffer. For example: hist = nan(n,length(t...

fast 3 Jahre vor | 0

Beantwortet
Log simulink (variable step) data with with one sample time!
Uee the To Workspace block in the Simulink Sink category and specify the Sample time in the block parameters.

fast 3 Jahre vor | 1

Frage


Dispaly numbers in Simscape Mechanics Explorer or Simulink 3D animation viewer
How can I dispaly numbers in a Simscape Mechanics Explorer? The numbers need to be displayed in the Mechanics Explorer in order ...

etwa 3 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
I can't plot this 3D matrix despite looking at other examples
The matrix has 3 independent variables. 3D plots using surf can only have 2 independent variable. You need to general 4 3D figur...

etwa 3 Jahre vor | 0

Beantwortet
If loop with character and two conditions
Use strcmp(t_adf_fdiff.reject,t_kpss_fdiff.reject) insteafd of t_adf_fdiff.reject == t_kpss_fdiff.reject. The two if statemen...

etwa 3 Jahre vor | 0

Beantwortet
How can I print the heatmap as grayscale?
heatmap(A) colormap(gray)

etwa 3 Jahre vor | 1

| akzeptiert

Beantwortet
solving equations with trigonometric functions
format long % show more digits double(S1.theta3) double(S1.theta4) format % back to the default format

etwa 3 Jahre vor | 0

Beantwortet
How can I apply the same force on multiple objects in Simscape Mulitbody?
The problem is not with the force block. The problem is caused by incorrect configuration of the components, i.e., the component...

etwa 3 Jahre vor | 0

Beantwortet
specialist/gig help
Try Upwork.com or freelancer.com

etwa 3 Jahre vor | 0

Frage


Split Simulink 3D viewer into multiple panes
Is it possible to split the Simulink 3D Viewer into multiple panes? I can split the display pane of the 3D World Editor into mul...

etwa 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to add a ROUTE node in the 3D world?
How can I add a ROUTE node in the 3D world as hilighted in the screen shot? Thanks.

etwa 3 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
I have a . Mat file of battery model how can i create simulink model from it
Mat file contain variables and their values. You can load it to the workspace. The file most likely contains test data. You need...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
Unable to find base block in simscape multibody
What do you mean by Base Block? You can find a World Frame block in the Frames and Transforms sub-category. The "Base Block" may...

etwa 3 Jahre vor | 0

Beantwortet
How can i obtain the final value of x and y?
Use sol = solve(prob) to solve the problem. The answer is in the sol object. You can also use sol.x and sol.y. Note that you may...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
White background from "Print to Figure" in Simulink scope
I found that the background color is same as the scope for the figure generated from the "Print to Figure" command in the scope ...

etwa 3 Jahre vor | 0

| akzeptiert

Frage


White background from "Print to Figure" in Simulink scope
The "Print to Figure" menu command in a Simulink scope generates a figure with a black background. How can I change the backgrou...

etwa 3 Jahre vor | 1 Antwort | 1

1

Antwort

Beantwortet
Replacing a for loop with matrix multiplication
Try x'*inv(SIG)*x. Matlab can directly handle vectors and matrices.

etwa 3 Jahre vor | 0

Mehr laden