已回答
"Simple" way to determine the number of different types of components used in a Simulink model?
Suggestion of *|sldiagnostics|* function helped. Documentation <http://www.mathworks.com/help/simulink/slref/sldiagnostics.html ...

8 years 前 | 0

| 已接受

已回答
Why is my shock absorber doesn't show the internal mechanics that I defined ?
Hello Shuo, This is because, you have not defined the densities for the solids appropriately. Set the density of all the foll...

8 years 前 | 0

| 已接受

已回答
What exactly do coeff and score represent in PCA and how can I reconstruct my data from them?
Good question! Made me dig a little bit so that was fun. I think this is because PCA normalizes the input raw data so that th...

8 years 前 | 7

已回答
I do not know if you can do the following in Simulink. But can you force the simulation of a model according to particular steps?
Answered here: <http://www.mathworks.com/matlabcentral/answers/293430-how-can-i-define-specific-sample-time-points>

8 years 前 | 1

| 已接受

已回答
What's happening inside the fitdist function in MATLAB ?
You have 3 options. I present them in the decreasing order of ease of use: (Easiest first) 1. Read documentation for the func...

8 years 前 | 0

已回答
Why is the motion of the shock absorber in my quarter car model seems undamped?
Shuo, First things first, this is not an issue with the system being undamped but that the Scope configuration properties is ...

8 years 前 | 0

| 已接受

已回答
How convert surfpoints?
I don't think you need int type to just match features. The workflow is to use *|detectSURFFeatures|* to get a |*SURFPoints*| va...

8 years 前 | 0

| 已接受

已回答
solidworks wont create simmechanics link even it is available on addIns?
SimMechanics Link works only for *assemblies* not parts. If you wanted to export individual parts like this one, save it as an S...

8 years 前 | 2

| 已接受

已回答
How can I click on “OK” or “Apply” button programmatically
Any Simulink block can be programmatically set using the |*set_param*| function. Look <http://www.mathworks.com/help/releases/R2...

8 years 前 | 2

已回答
How to use svm regression model to train the part of the data and test rest of the data
Use *cvpartition* function to separate training and test data. (Documentation and examples <http://www.mathworks.com/help/stats/...

8 years 前 | 0

已回答
How to perform an infinite loop in matlab so that it is always running a sequence?
Example from the documentation <http://www.mathworks.com/help/matlab/ref/while.html here> . Sum a sequence of random numbers ...

8 years 前 | 0

已回答
how can i define specific sample time points?
There is a lot of information required to be able to help choose a solver (Does your system have continuous states? Does it have...

8 years 前 | 1

| 已接受

已回答
Can matlab2013a computer vision toolbox process point clouds?
The release notes suggest that most of the inbuilt point cloud functionality was released in version R2015a. First point here: <...

8 years 前 | 1

已回答
Display message in GUI when solver stops prematurely
You can use the try-catch statement to handle potential errors and override default behavior. Documentation <http://www.mathwork...

8 years 前 | 0

已回答
How can I introduce a force that is vertical to a different reference frame in SimMechanics?
You can use the External Force and Torque block and set the resolution frame to 'World' to do this. Documentation <http://www.ma...

8 years 前 | 1

| 已接受

已回答
How to programmatically minimize or maximize SIMULINK MODEL window
Not sure if this exactly answers your question. But if you are doing programmatic simulation of Simulink models (through MATLAB ...

8 years 前 | 0

已回答
How can I make a transition when a variable does not change its value?
One way to do this would be to use some sort of an intermediate state to toggle between the condition. See screenshot at the end...

8 years 前 | 1

| 已接受

已回答
How to use simulink to find minimums of a signal over successive intervals of time ???????
Use the MinMax running resettable block and generate/pass a reset signal based on the time instant: <http://www.mathworks.com/he...

8 years 前 | 0

已回答
Derivative of a step in discrete domain is impulse and would like to avoid it. How to do it?
Its usually recommended to feed only smooth signals to derivative blocks for the same issue you are mentioning here. One way to ...

8 years 前 | 0

| 已接受

已回答
I want to create simulink models using matlab editor. Is there a documentation that gives a brief introduction of such things ?
Take a look at this doc link: <http://www.mathworks.com/help/simulink/ug/approach-modeling-programmatically.html>

8 years 前 | 1

| 已接受

已回答
Remove only horizontal lines from an image
Hello, In my best guess, I think you are looking for some sort of 'line detection'. Hough transform is a popular way to do th...

8 years 前 | 0

已回答
How to decide SimDriveline Dryclutch parameters values?
Hello Arden, AFAIK the clutch state is not determined as simple as that. Refer to the section 'Clutch States' in the fundamen...

9 years 前 | 0

已回答
Bode stability demonstration in Simulink
Have you thought about using something like a switch? Have a look at this demo 'sldemo_zeroxing' that shows input changing as a ...

13 years 前 | 0

| 已接受