Question


Setting GUI Control Default Properties by Style
When setting default values for GUI control properties, you can set default properties for all uicontrols: f = figure; s...

13 years ago | 2 answers | 0

2

answers

Answered
Let users enter integer, warn them if they enter anything else
From the documentation of input: "The response to the input prompt can be any MATLAB expression, which is evaluated using the va...

13 years ago | 0

Answered
Creating a custom copy of a Matlab function (xlsread)
If you type which xlsread you will see something like C:\Program Files\MATLAB\R2009a\toolbox\matlab\iofun\xlsread.m...

13 years ago | 1

| accepted

Answered
what is wrong?
When you cat along the third dimension, the first two dimensions must match up. Let's look at what your cat-ing. First, you ha...

13 years ago | 0

Answered
ascii to binary
>> dec2bin('home') ans = 1101000 1101111 1101101 1100101 >> char(bin2dec('1101000')) ans = ...

13 years ago | 0

| accepted

Answered
Condition which reduces the size of the vector
I don't quite understand your question. If A = [1,3,2,1,4,6,7,8,5,2]; then you say the new vector should have six ele...

13 years ago | 0

Answered
Converting a CSV into a XLS through MatLab
You could import it (in various ways: csvread, import, etc.) and then write out to Excel via xlswrite.

13 years ago | 1

| accepted

Submitted


SUMM
Function analogous to DIFF, but takes sums instead.

14 years ago | 1 download |