Answered
Calculate derivatives on the interval 0<x<2pi using forward, backward, centered, and fourth order accurate finite differences
It looks like you just pasted the HW assignment. But this is MATLAB Answers, implying that there are questions being answered. ...

15 years ago | 3

Answered
Send data to a different fig. window
Set the axes in B figure with a tag to look for from the GUI callback where the data is calculated. % Inside callback wher...

15 years ago | 0

| accepted

Answered
no figure toolbar
I think what you want is this: set(0,'defaultfiguretoolbar','figure'); To see the list of options, use: set(gcf,...

15 years ago | 1

Answered
matlab trigonometric function based application
Here is a little trig function demo GUI: <http://www.mathworks.com/matlabcentral/fileexchange/22664-trigdemo>

15 years ago | 0

Answered
Cursor line
This can be done with a little handle graphics. I don't have time right now to make this code perfect (error checking, special ...

15 years ago | 5

| accepted

Answered
How to reset persistent variables in nested functions?
A hokey workaround: function MyFunc() resetfoo = false; % issued once at beginning. MyNestedFunc(); M...

15 years ago | 0

| accepted

Answered
Solving the scaling problem.
If A = [a 0;0 b] % a and b unknowns Ax = y % The governing relation between known col vects x and y. then A = diag(...

15 years ago | 0

| accepted

Answered
What is missing from MATLAB?
Real pass by reference.

15 years ago | 12

Answered
Generating scalar volume data, now in x,y,z,v columns
Try using NDGRID instead of MESHGRID. Read carefully the help for NDGRID, because the output order differs from that of MESHGRI...

15 years ago | 0

Answered
saving a matrix
When you load, use the functional form of LOAD in order to avoid overwriting your variables. X = load('FT'); % Then use X.v...

15 years ago | 1

| accepted

Answered
count bins
I think you might need to use the HISTC function. Have a look at the help to see if it meets your needs.

15 years ago | 0

| accepted

Answered
Translating P-code files to M-files
Not very likely. Pcode is not unbreakable, but it will probably cost you more time and effort than just writing the same code y...

15 years ago | 3

| accepted

Answered
Randomly generate a matrix of zeros and ones with a non-uniform bias
Like this? A = rand(1,21)>.3 % Increase number for less ones, decrease for more.

15 years ago | 1

| accepted

Answered
How to learn MATLAB
This is the best general MATLAB book out there in my opinion, look at all it covers in the description. It is the book I learne...

15 years ago | 0

Answered
Compiling MEX files with Visual C++ 2010 with matlab2009a
You will have to modify a couple of the MATLAB bat files in order for the option to be seen. Alternatively, you could download ...

15 years ago | 1

Answered
[DISCONTINUED] Wish-list for MATLAB Answer sections.
I know it is not realistic, but man would I love it! A filter that wouldn't let an OP post a question with TXT type in it. No ...

15 years ago | 2

Answered
Conditional plotting, changing color of line based on value.
Perhaps you mean something like this: x = -10:.01:10; y = sin(x); idx = y<=0; plot(x(idx),y(idx),'r*',x(~idx),y(~idx),'...

15 years ago | 4

Answered
How do I reverse the order of a vector?
Or, a one liner: reshape(permute(reshape([0:7 7:-1:0],2,4,2),[2,1,3]),4,4)

15 years ago | 1

Answered
How do I reverse the order of a vector?
Walter, I am shocked that you didn't include the _obvious_ nested FOR loop. cnt = 0; for ii = 1:2, for jj = 1:4...

15 years ago | 2

Answered
How to make a list of user's reputation ? :)
S = urlread('http://www.mathworks.com/matlabcentral/answers/contributors/2710900'); % 2710900 is your user number. I =...

15 years ago | 3

| accepted

Answered
[DISCONTINUED] Wish-list for MATLAB Answer sections.
Alright I will say it. I know they are stupid and annoying, and that we are all professionals here, but sometimes I like those ...

15 years ago | 2

Answered
creating sub arrays
a = [2 3 4; 2 15 6;2 65 4] b = a([2;2;2],:) Reads as: take all columns of row 2, three times and assign it to b. Whateve...

15 years ago | 1

Answered
Creating Step by Step tutorial for guide gui
My first thought is that you would have to put into each callback that is used during the tutorial an IF statement, _at the end ...

15 years ago | 2

| accepted

Answered
I want to know code for Norm of any matrix ?
Give this a try: help norm After you read the text, you should know how to proceed.

15 years ago | 1

Answered
How can I retrieve the processor serial number with Matlab?
This doesn't work all the time, but might give you an idea of what can be done. T = evalc('!wmic bios get serialnumber')

15 years ago | 0

Answered
randomizing location of N zeros in matrix of ones
EDIT: Thanks to Jan Simon for nitpicking ;-). Say you want a 20-by-20 matrix of zeros with 7 ones put in: N = 7; A = one...

15 years ago | 4

| accepted

Answered
Removal of duplicate entries and counting them
You could use a loop, or do something like this: a = {'the' 'the' 'she' 'he' 'she' 'she'} [V,N,X] = unique(a); N = ...

15 years ago | 3

| accepted

Answered
multidimensional colon operator?
If you want to get real evil: function A = insert_x_into_A(A,x,t) col = repmat(':,',1,ndims(A)-1); eval(['A(',col,'t)...

15 years ago | 0

Answered
How do I write a good answer for MATLAB Answers?
Read the question all the way through before answering! (I need to remember this myself.)

15 years ago | 2

Answered
How to plot a simple curve
Or, if you want to be able to do this for a general function (or more): g = @(x) x.^2; % Create your function for plotting. ...

15 years ago | 3

Load more