Answered
hello, i have 4 figures and need to combine them to one. How can I do it?
If you mean to plot 4 data sets onto the same figure, use the hold on after every plot (or you can do it all together): x1=...

11 years ago | 0

Answered
How to reshape a matrix?
I would recommend looking at these two documentation: <http://www.mathworks.com/help/matlab/ref/reshape.html reshape(A,m,n)> ...

11 years ago | 0

| accepted

Answered
can i pause matlab excution while it is already running
You can pause the script/function that you're running for a specified amount of time without quitting the script. You can use...

11 years ago | 1

Answered
How do I select rows with particular step size?
If A is the 25000 X 5 matrix, then you can just use: A(1:20:end, :) to get 1,21,41,... from all of the columns. If you w...

11 years ago | 0

| accepted

Question


How can I get notifications when someone replies to an answer or to a comment?
When I'm answering questions in the forums and such, I haven't received any notifications when someone comments after my comment...

11 years ago | 2 answers | 1

2

answers

Answered
How to display the answer got from .m file in GUI -- in edit box
I would suggest that your .m is a function that gives a specific output. So, from the previous post (depending on how many outpu...

11 years ago | 0

| accepted

Question


Combining two different matrices of different sizes
I want to combine two different matrices with a different number of columns so that the output has the lower number of columns. ...

11 years ago | 1 answer | 0

1

answer

Answered
How to transfer axes from GUI to figure and save as PDF
I had this problem a while ago. I couldn't figure out how to solve it. I figured the best way was to open up a new figure (In...

11 years ago | 0

Answered
When using saveas command in a driver file to save figures, is there a way to automatically name the saved figure after the values of a parameter defined in the function file?
I would suggest predefining a variable and using strcat to update the values. Instead of what you had before, you can just pu...

11 years ago | 0

| accepted

Answered
import data using GUIs
I would suggest using the uigetfile function and then using the load function by using a pushbutton. Using GUIDE, make a pu...

11 years ago | 1