回答済み
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年以上 前 | 3

回答済み
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年以上 前 | 0

| 採用済み

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

15年以上 前 | 1

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

15年以上 前 | 0

回答済み
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年以上 前 | 5

| 採用済み

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

15年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

| 採用済み

回答済み
What is missing from MATLAB?
Real pass by reference.

15年以上 前 | 12

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 3

| 採用済み

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
[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年以上 前 | 2

回答済み
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年以上 前 | 4

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 2

回答済み
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年以上 前 | 3

| 採用済み

回答済み
[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年以上 前 | 2

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 2

| 採用済み

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 4

| 採用済み

回答済み
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年以上 前 | 3

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 2

回答済み
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年以上 前 | 3

さらに読み込む