Answered
Revert back to default mask values?
I believe there is one workaround for this situation: Instead actual default numeric values in mask, you can provide a variab...

13 years ago | 0

Answered
Selecting Version for COM server
According to the matlab documentation: "Matlab.Application — Starts a command window Automation server with the version of MA...

13 years ago | 2

| accepted

Answered
How to plot a matrix?
Use "hold on" or "hold all" command Hope it helps!!!

13 years ago | 0

Answered
Library settings not reflected properly
Save the updated model first. Then try reloading the model i.e. close & open. Hope it helps!!!

13 years ago | 0

Answered
Im getting an error in Matlab command window saying ' Matrix dimensions must agree' for x1=x.*w. Could sum1 say me wats wrong here??
Probabaly dimensions of your inputs x & w are not compatible. Use below command for checking dimensions of x & w: whos x w...

13 years ago | 0

| accepted

Answered
Addition of string matrices.
You can use 'RESHAPE' command: See documentation for reference. Hope this helps!!!!

13 years ago | 0

Answered
How to extract the data that is used to draw a surface in this example?
Check link below; http://www.mathworks.in/support/solutions/en/data/1-A6PBV2/?solution=1-A6PBV2 Hope this helps!!!

13 years ago | 0

| accepted

Answered
What causes the save command (in MATLAB) to fail?
If data being stored is of complex nature & is stored with -ascii option, then according to matlab documentation: "Saving com...

13 years ago | 0

Answered
how can i interface plc with simulink
Below link would very useful for your requirements: http://www.mathworks.in/support/solutions/en/data/1-28T41D/index.html?pro...

13 years ago | 2

Answered
Model advisor _ to add check list!
You can use get_param command. Find details in below link: http://www.mathworks.in/help/simulink/slref/get_param.html H...

13 years ago | 0

| accepted

Answered
How to create project in matlab??
Refer link below: http://www.mathworks.in/discovery/simulink-projects.html Here you will find lot of tutorial videos & oth...

13 years ago | 2

Answered
Display text in block properties dynamically
Probably you will find below link useful: http://www.mathworks.in/help/simulink/ug/block-properties-dialog-box.html Hope i...

13 years ago | 1

| accepted

Answered
Rate Limiter with variable slew rate
You can use the 'Acceleration' mode for simulation, which will generate code & mex file automatically, along with improvement in...

13 years ago | 0

Answered
Error with RealTimeWorkshop Compiler
You will need to verify mexopts.bat file manually to check whether correct paths are enetered by running 'mex -setup' command

13 years ago | 0

Answered
How do I write from a GUI button in a simulink parameter ?
Reason coould be uninitialized variable in workspace, instead of 'set_param' command use 'assignin' in your GUI code. Hope th...

13 years ago | 0

Answered
conversion of dot C file to dot mat file
From MATLAB documentation: #include "mat.h" // matlabroot\extern\include void main(){ double array[] = {1,2,3,4,5,...

13 years ago | 0