Answered
Four data sets on one plot
I am not sure what is the problem. If you want to adjust the scale, can't you just use the axis() function?

15 years ago | 0

Answered
how to cal a function from another function in matlab gui????
Any time you want to call the function, you just type that function name with the right input and output arguments, right. Even ...

15 years ago | 0

Answered
genvarname for string with structure fieldname
genvarname() is used to create a valid MATLAB variable name, not to create the variable name with a field name together. You can...

15 years ago | 0

Answered
MATLAB's accuracy of digits number
This is a really good question. I like it. Look at the following code: aStr={'1234567890.12345'; '1234567890.12345...

15 years ago | 2

Answered
Selecting and accessing 1 data in a timeseries object of 6 datas
I think you can not. Please refer to <http://www.mathworks.com/matlabcentral/answers/9866-using-the-from-file-data this post> ...

15 years ago | 0

| accepted

Answered
Signal builder option access by command line
I looked into this issue because I like this challenge. I assume you are using signalbuilder() API to set up the Simulink Signal...

15 years ago | 0

Answered
Manipulating graph interactively
Not sure what you mean. From you title, you certainly can manipulate graph interactively. h=plot(1:10,sin(1:10)) In the ...

15 years ago | 0

Answered
Simulink complexity propogation
Let me guess, if you type V.Complexity in command window, it probably says 'auto'. In your Stateflow chart, if you click menu To...

15 years ago | 0

Answered
Using handle graphics for more global variables
<http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.3F How can I share data bgetween cal...

15 years ago | 1

Answered
change the color of data in legend
Follow <http://www.mathworks.com/matlabcentral/answers/8843-using-legend this post> to change the color of the legend.

15 years ago | 0

Answered
dynamic range of slider in MATLAB GUI
Yes, you can. Range=get(handleEdit,'string'); set(handleSlider,'Max',str2num(Range));

15 years ago | 0

| accepted

Answered
mlint across multiple functions in separate files
Do you use M-Lint interactively in M-editor, or do you use mlint() as a function in M-script? The Tools>Show Dependency Reports ...

15 years ago | 0

Answered
Cut and re-join strings
Bill, What type of task are you dealing with? I suggest you changing your mind set a little bit. Based on the description part o...

15 years ago | 0

Answered
How can I connect to Access database?
Use the <http://www.mathworks.com/help/toolbox/database/ Database Toolbox>?

15 years ago | 0

Answered
How can I fix this error?
Your transfer function can be simplified as s^2+1. If your transfer function is 1, then its step response is the step input it...

15 years ago | 1

Answered
Using Textscan and Concatenation of multiple .txt files
With 200 files (or 600 file) and each file contains 270x1 data, I wouldn't think it would take long if you write a program to re...

15 years ago | 0

Answered
string choppping
Not sure what your "chopping" try to achieve, could the fileparts() function help you task? >> [PathStr,Name,Ext]=fileparts...

15 years ago | 1

| accepted

Answered
use of the 'uitab'
First of all, reformat your code portion of your question as {}Code so it's more readable to human eyes. By first glimpse, your ...

15 years ago | 0

| accepted

Answered
Stop Simulink simulation base don a variable value
Add an "Assertion" block into your Simulink model. The block is in the library Simulink>Model Verification. It has the option to...

15 years ago | 0

Answered
How to avoid e+ notation when using fprintf to print to a file
fprintf(1,'%ld\n',4107218783) doc sprintf

15 years ago | 0

Answered
How to decrypt a pcode?
I thought the Mathworks could do it. But they won't do it. After all, it is put in place to protect many of its source code (par...

15 years ago | 0

Answered
Dynamically Naming Variables Saved to A Mat File
When you store multiple structures in a SINGLE mat file, you still need to load all the structures in that mat file. When you sa...

15 years ago | 1

Answered
finding min and max values from a file
Thank you for showing the example. I saw you posted similar questions a few times. Not sure how representative are these text fi...

15 years ago | 0

Answered
csvwrite with a double
No. Your line probably should be: csvwrite([exportlist{a},'.csv'],evalin('base',exportlist{a})) Read my answer to your o...

15 years ago | 0

| accepted

Answered
Create a block to read keyboard inputs
Drag and drop a Constant block, right click it, select "Block Properties ...", click the "Callbacks" tab, select "OpenFcn", type...

15 years ago | 0

| accepted

Answered
string choppping
help strrep help regexp help regexprep If you provide an example, many expert would be eager to try their regular exp...

15 years ago | 0

Answered
Enumerated Data Type in MATLAB
Check out the MATLAB Enumeration class. <http://www.mathworks.com/support/2010b/matlab/7.11/demos/enumerations-in-r2010b.html...

15 years ago | 0

| accepted

Answered
Simulink: rectangular pulse filter with finite rise time?
This <http://www.mathworks.com/help/toolbox/comm/ref/raisedcosinetransmitfilter.html Raised Cosine Transmit Filter>?

15 years ago | 0

Answered
Copy & Paste of PowerPoint Slides in Matlab
I think you are looking for the methods for doing "Duplicate Slide" or copy and paste slides. The following should do it. hA...

15 years ago | 0

Answered
xlswrite question on long strings (0x800A03EC)
I had the same problem with MS office 2003. I even submitted a bug report to Microsoft but didn't really get response. I think t...

15 years ago | 0

| accepted

Load more