Answered
Segmented Sinewave
Okay, I'm still not entirely sure what you mean, but based on your response to one of the questions, it seems like you just want...

15 years ago | 0

Answered
GUI closing automatically?
I would assume you have a <http://www.mathworks.com/help/matlab/ref/close.html |close|>, <http://www.mathworks.com/help/matlab/r...

15 years ago | 2

| accepted

Answered
Cursor line
I posted a similar solution <http://www.mathworks.com/matlabcentral/answers/1758-crosshairs-or-just-vertical-line-across-linked-...

15 years ago | 1

Answered
How to rename a bunch of files in a folder
Here's an example: % Get all PDF files in the current folder files = dir('*.pdf'); % Loop through each for id ...

15 years ago | 12

Answered
crosshairs or just vertical line across linked axis plots
This may get you started: function vertical_cursors set(gcf, ... 'WindowButtonDownFcn', @clickFcn, ... 'Window...

15 years ago | 10

| accepted

Answered
crosshairs or just vertical line across linked axis plots
Does the answers from this <http://www.mathworks.com/matlabcentral/answers/1308-cursor-line question> help?

15 years ago | 1

Answered
Simple visualization of a 3-d array (volumetric?)
You can use <http://www.mathworks.com/help/matlab/ref/scatter3.html |scatter3|> to view "voxels" in 3 dimensions, but in your ca...

15 years ago | 0

Answered
How to Plot a 3-d matrix, so I can see the image it represents?
Perhaps you can read up on <http://www.mathworks.com/help/matlab/visualize/f5-8666.html Volume Visualization Techniques>. There'...

15 years ago | 0

| accepted

Answered
View text in editor without saving to file
Depending on the release of MATLAB, you may be able to use the unsupported editor API through the editorservices package. h...

15 years ago | 1

Answered
Sending e-mail
I was able to do it by changing the Body property (instead of HTMLBody): mail.Body = sprintf('This is line one.\nThis is li...

15 years ago | 1

| accepted

Answered
Simulink basics
Take a look at the <http://www.mathworks.com/academia/student_center/tutorials/simulink-launchpad.html Simulink Tutorial launchp...

15 years ago | 2

Answered
Trouble importing data from excel file using xlsread
What do you get when you type exist('C:\Documents\oput021m.xlsx', 'file') Does it return 2? If 0, then you mistyped the ...

15 years ago | 2

| accepted

Answered
Which colour does Matlab use for strings?
On my MATLAB, the color for the strings is [160, 32, 240] (in uint8). You can check it from your <http://www.mathworks.com/help/...

15 years ago | 1

| accepted

Answered
Surface fitting toolbox
There are a couple of ways you can do this. 1. From the "Fit" menu, select "Save to Workspace...". This will allow you to sav...

15 years ago | 1

| accepted

Published


Fancy Menus
Jiro's pick this week is menubar by Dirk-Jan Kroon. I'm honestly perplexed that his files have not been...

15 years ago

Thumbnail

Answered
Can I create a momentary command using the GUI pushbutton?
One way is to make use of <http://www.mathworks.com/help/matlab/ref/figure_props.html#WindowButtonUpFcn WindowButtonUpFcn> prope...

15 years ago | 0

Answered
GUI for keyboard pressed representing the push button
I assume you are using GUIDE to create your GUI. In that case, create a <http://www.mathworks.com/help/techdoc/ref/figure_props....

15 years ago | 3

Answered
How do I keep a handle and use FINDOBJ to get a handle again?
What Matt and Matt said. Plus, I would emphasize again: Never ever ever use the actual number to refer to the handle. Instead...

15 years ago | 0

Answered
[DISCONTINUED] Wish-list for MATLAB Answer sections.
A way to automatically scroll to the most recent answer/comment/edit. For example, this question has many, many answers and comm...

15 years ago | 5

Answered
Display the different size of preview image from that of the captured images.
What you basically want is a preview window that is smaller. You can achieve that by forcing the figure (and axes) to be a small...

15 years ago | 1

| accepted

Answered
Does an External Parallel Computing Service Exist
You may be interested in learning about <http://www.mathworks.com/programs/techkits/ec2_paper.html "Parallel Computing with MATL...

15 years ago | 3

Answered
How to change the background of picture using MouseEnter event??
I may not have the VB part well coded, but this should get you started. function ln = formTest NET.addAssembly('Syst...

15 years ago | 0

Answered
3D Plot with large data
Another thing you could try is to do some interpolation of the data and plot at a lower resolution. As Oleg points out, there's ...

15 years ago | 3

Answered
no figure toolbar
I'm not sure if you're asking how to not display the toolbar by default, or asking why your figure does not display the toolbar ...

15 years ago | 0

Answered
Error while reading files from a directory
It's probably the directory. Are the files in a different directory than where you're running from? Store the directory name and...

15 years ago | 0

| accepted

Answered
error in installation(product configuration notes)
Windows 7 is not supported in MATLAB R14: <http://www.mathworks.com/help/releases/R14/base/install/pc/ch1_in17.html#55600>

15 years ago | 0

Answered
How verify that a RadioButton is Checked?
Use <http://www.mathworks.com/help/matlab/ref/uicontrol.html |uicontrol|> (with style 'radiobutton') to create a radio button. ...

15 years ago | 2

| accepted

Published


Create Multi-Column Plot Legends
Brett's Pick this week is "columnlegend," by Simon Henin. NOTE: Functionality similar to this File...

15 years ago

Thumbnail

Answered
Locating Peaks Naively
There are a few files on the File Exchange for peak finding. I wrote a blog post about one of them <http://blogs.mathworks.com/p...

15 years ago | 1

Answered
Subtracting the next element on a vector? Basic
A = [20, 8, 4, 1]; B = -diff(A);

15 years ago | 6

| accepted

Load more