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

oltre 2 anni fa | 0

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

oltre 2 anni fa | 0

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

oltre 2 anni fa | 0

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

oltre 2 anni fa | 0

Risposto
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?

oltre 2 anni fa | 0

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

oltre 2 anni fa | 0

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

quasi 3 anni fa | 0

Risposto
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

quasi 3 anni fa | 0

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

quasi 3 anni fa | 0

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

quasi 3 anni fa | 0

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

quasi 3 anni fa | 0

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

quasi 3 anni fa | 0

Domanda


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

quasi 3 anni fa | 1 risposta | 0

1

risposta

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

quasi 3 anni fa | 0

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

quasi 3 anni fa | 1

Domanda


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

circa 3 anni fa | 0 risposte | 0

0

risposte

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

circa 3 anni fa | 0

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

circa 3 anni fa | 0

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

circa 3 anni fa | 1

| accettato

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

circa 3 anni fa | 0

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

circa 3 anni fa | 0

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

circa 3 anni fa | 0

Domanda


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

circa 3 anni fa | 0 risposte | 0

0

risposte

Domanda


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.

circa 3 anni fa | 0 risposte | 0

0

risposte

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

circa 3 anni fa | 0

| accettato

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

circa 3 anni fa | 0

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

circa 3 anni fa | 0

| accettato

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

circa 3 anni fa | 0

| accettato

Domanda


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

circa 3 anni fa | 1 risposta | 1

1

risposta

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

circa 3 anni fa | 0

Carica altro