Answered
Combine LineStyleOrder and ColorOrder?!?
Jan - I don't see any reason why you can't combine the two for (example) the current axes (gca) as set(gca, 'ColorOrder', my...

10 years ago | 0

Answered
1d Diffusion (for a complete newbe)
Stefan - I don't have the *Curve Fitting Toolbox* so I can't tell with certainty what may be the problem. But looking at expres...

10 years ago | 0

Answered
Daisyworld function error, insufficient arguments
pi - how are you calling this function? Because if you are just running the program though the MATLAB editor (i.e. by pressing ...

10 years ago | 0

Answered
How do i integrate a matrix between limits
Rob - I think that you may first want to write those equations that depend upon velocity, *v*, as <http://www.mathworks.com/help...

10 years ago | 2

| accepted

Answered
How to save data from a GUI edit box to table using push button?
Dang - use the *handles* structure that is passed in as the third parameter to the push button callback to get the handles to th...

10 years ago | 3

| accepted

Answered
How to use GUI data in other functions ?
Arun - in this case, using the MATLAB debugger would be a good way to figure out what is happening. If you put a breakpoint at ...

10 years ago | 0

| accepted

Answered
How to Plot a Function Contained in a for Loop (Plots not showing up)
Marshall-Richard - stepping through the code with the MATLAB Debugger would go a long way to helping you solve this problem. Co...

10 years ago | 0

| accepted

Answered
Saving website data as an excel file with Matlab
Jared - can you provide an example url to a page that you wish to save to an Excel file? Perhaps you could use <http://www.math...

10 years ago | 0

| accepted

Answered
The functions in GUI have error like the attached picture
Shimaa - from your attached image, it is unclear what the error message might be (since you don't actually post it). The underl...

10 years ago | 1

Answered
plot3 - How to "automate" desired plot settings?
rbarata - to be clear, I don't know if the below will work or if this is the intended manner in which the *groot* object is to b...

10 years ago | 0

Answered
how to create vector In for/if cyklus?
xy - it seems as if your code is iterating over the *y* array and looking for those elements which are a maximum with respect to...

10 years ago | 0

| accepted

Answered
Solve function that calculates UTS and stores in Matrix
Nimmy - rather than posting your homework assignment verbatim, why not make an attempt at solving the problem? You are told exa...

10 years ago | 0

Answered
Write mutiple matfiles in to one csv
Kanakaiah - according to the documentation for <http://www.mathworks.com/help/matlab/ref/xlswrite.html xlswrite> all you should ...

10 years ago | 0

Answered
How to create sepia image in gui?
Rossana - look at your last line of code imshow(is); You are displaying the original image *is* when you want to display...

10 years ago | 0

Answered
Listing Filename of Axes into Listbox
Jose - in your pushbutton callback you will want to access the set of strings in the list box, and append your new string (the f...

10 years ago | 0

| accepted

Answered
thank you for help
Victoria - the error message is telling you that you are trying to access an element in an array (or matrix) using an index that...

10 years ago | 0

| accepted

Answered
Phase shifting graphs and limit range of x-axis
M - you mention _the problem of the reflected wave before x=0 and the wave after x=0 not being joined together_. If I iterate t...

10 years ago | 0

| accepted

Answered
How to rotate a line on a center point?
Nik - if each right mouse-click corresponds to a single rotation (given a fixed rotation angle), then you can use the below code...

10 years ago | 0

Answered
5 places are there, 3 dolls is there to arrange with name F,N,M. repitation allowed. how to code in matlab ?
Jishnu - this seems like a homework question, so rather than just give you the answer, here are some hints. If you had two ch...

10 years ago | 0

Answered
Matlab problem - index out of bounds Reference
The error message is telling you that you are trying to access the 13th element from an array, *Lighto*, which only has twelve e...

10 years ago | 1

| accepted

Answered
reading strings with if statements
Antoni - you are missing an *end* after the third *elseif* just prior to the next *if* elseif letter(1)=='d' pos1=mat...

10 years ago | 0

Answered
I made a minesweeper game and I need to know how to get an image of a bomb to display on the grid.
Ali - an alternative may be to create a single image (mxnx3) and manipulate the data within it whenever the user "presses" on a ...

10 years ago | 0

Answered
How to create a Matrix which shows a ranking of values
Florian - suppose your list of names is a cell array listOfNames = {'Lisa', 'Paul', 'Franz', 'Lisa', 'Lisa', 'Michael', 'Pau...

10 years ago | 0

Answered
How to make 4 different colour on four different quadrant?
Nik - the documentation for <http://www.mathworks.com/help/matlab/ref/atan.html atan> indicates that calling this function retur...

10 years ago | 0

Answered
how i can solve this proble of degree!!!!!!!!!!!!!?????????????????,
ali - your above code would never set a non-integer number as any element in the *degree* array since all you ever do is just in...

10 years ago | 0

Answered
??? Undefined function or variable 'k'.
ali - your above code sample is incomplete. As the error message is telling you, the variable *k* is undefined. And from your ...

10 years ago | 0

Answered
degree of neighbor in wsn
Ali - shouldn't *DD* be a square matrix since you are calculating the distance between every pair of nodes? So that DD(i,j...

10 years ago | 1

| accepted

Answered
unique characters in a cell
Max - is the order in your output important? If you use first convert your cell array of strings to a single string using <http...

10 years ago | 0

| accepted

Answered
i want to decipher the message below using the key(κλειδι) . can you help me please?
stavros - given that your key has all twenty six letters in the (modern) English alphabet, we can probably assume that the key i...

10 years ago | 0

Answered
editing a cell in a loop
Max - use <http://www.mathworks.com/help/matlab/ref/cellfun.html cellfun> to apply a function to each element in your array. In...

10 years ago | 0

| accepted

Load more