Answered
How can I delete a plot among many plot in one figure?
This thread might help (If you have plotted the two separately ) <http://www.mathworks.com/matlabcentral/answers/1444-clear-one...

nästan 12 år ago | 6

| accepted

Answered
array of natural numbers from 1 to n subset
Ok, there are multiple ways to go about, I'll suggest a start to one, but you will have to develop the logic yourself First s...

nästan 12 år ago | 1

| accepted

Answered
Export Figure using Print
This might help: You could use the same to write sequence of files <http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_s...

nästan 12 år ago | 0

Answered
How may I change the color of the grid using "plot"?
Since this is a homework, we cant give you the answer directly, however this might help: <http://www.mathworks.com/support/so...

nästan 12 år ago | 0

| accepted

Answered
Can an mfile(s) written in Matlab on Windows be run on matlab for a Mac without compatibility issues?
mfiles are script/function files which are dependent on MATLAB and not the underlying OS, unless you are making system call in y...

nästan 12 år ago | 3

Answered
How can i make use of csv file format in my matlab coding
try the csvread command <http://www.mathworks.com/help/matlab/ref/csvread.html>

nästan 12 år ago | 1

Answered
Can I design a Wireless Sensor Network (WSN) using Simulink or MATLAB?
Do you have any paper that you are following. This work is equivalent to a Thesis or dissertation. Anyways since you asked, h...

nästan 12 år ago | 0

| accepted

Answered
Cannot get .tif image to display
Does the following work.. imshow(x,[])

nästan 12 år ago | 4

Answered
can any one correct me this code please??
bwlabel works on a 2D matrix, Your 13.jpg image is probably a color (rgb) image and hence is a 3 dimensional matrix. You could c...

nästan 12 år ago | 1

Answered
GPU acceleration to speed up matrix operations?
Loren's blog on GPU's and MATLAB will be really helpful in answering your questions. <http://blogs.mathworks.com/loren/2012/0...

nästan 12 år ago | 2

| accepted

Answered
converting matlab image to jpg image
You could use the GUI or doc saveas saveas(h,'filename.jpg') < http://www.mathworks.com/help/matlab/ref/save...

nästan 12 år ago | 1

| accepted

Answered
Searching the minimum element of an array
Something like this a=rand(10,1) % your array a = 0.81 0.91 0.13 ...

nästan 12 år ago | 1

Answered
How to calculate diagonal for NxN matrix ?
YOu could use sum(diag(A)) this is essentially trace(A) What does rotation by 45 mean

nästan 12 år ago | 0

| accepted

Answered
how to read a period of wav file in matlab?
Try the wavread function doc wavread or <http://www.mathworks.com/help/matlab/ref/wavread.html> If this does not ans...

nästan 12 år ago | 0

Answered
how to store data in a matrix
This video should help: <http://blogs.mathworks.com/videos/2007/08/20/matlab-basics-video/> Eg for ii = 1:50 ...

nästan 12 år ago | 0

| accepted

Answered
find values from a matrix according to a criterion
Something like this time = [733774,733774,733775,733775,733775,733776,733776]; data = [1,1.3,1,2.5,2.5,1,1.2]; ...

nästan 12 år ago | 0

Answered
How to put a marker in the begnnig and in the end of the simulation plot?
Something like this: r=[0 0 0]; for t= 0:0.1:20 B1=randi(6,1); if B1==1 rnew=r+[1 0 0];...

nästan 12 år ago | 1

| accepted

Answered
extracting face part in a image
This might help: <http://www.mathworks.com/matlabcentral/fileexchange/11073> another one her: <http://www.mathworks.com/ma...

nästan 12 år ago | 0

Answered
title become to straight
try title('key','Fontsize',14,'Rotation',90.0)

nästan 12 år ago | 0

| accepted

Answered
calculation of a mean matrix
a = [1 2 3; 2 3 4]; b = [2 3 4; 3 4 5]; c=[mean(a);mean(b)]

nästan 12 år ago | 0

Answered
replacing NaN with it previous element
K={ 'IT' 'ooil' 'TTT' [ 0] [4.1583] 'IT' 'ooil' 'TTT' [ 0] [4.0339] 'IT' ...

nästan 12 år ago | 1

Answered
How to extract the plate area only from black background
The following thread might be helpful <http://www.mathworks.fr/matlabcentral/answers/4183-code-for-locating-lisence-plate>

nästan 12 år ago | 1

Answered
Datenum date conversion troubles
Just try something like: str={'7/31/2012 2:35:00 PM' '7/31/2012 2:36:00 PM' '7/31/2012 2:37:00 PM' '7/31/2012 2:38...

nästan 12 år ago | 0

Answered
how can change the angle of image ?
something like this? Based on the method shown here: <http://stackoverflow.com/questions/5770818/how-to-align-image-matlab> ...

ungefär 12 år ago | 1

Answered
changing the date form in a cell matrix
Using the first A cell MAtrix shown in the question: for ii=1:length(A) A(ii,3)=strrep(A(ii,3),'S','SEP'); ...

ungefär 12 år ago | 1

| accepted

Answered
plot date from excel file
Something like this x={'12:00','12:15','12:30','12:45'}; %time y=[0.5 0.8 0.3 0.6] % values time_out=d...

ungefär 12 år ago | 0

Answered
how to save work space?
You could increase the Java Heap size as follows: Windows:File->Preferences->General->Java heap space Mac: MATLAB->Prefe...

ungefär 12 år ago | 2

Answered
Selecting randomly from matrix
perhaps something like this.. q=[ 2 5 6 8 9 10 56 89 10 1 0 3 8 1 3] ...

ungefär 12 år ago | 0

Answered
Displaying the most number of counts
A very round about way of doing this but works.. a = { '' 'c1' 'c2' 'c3' 'c4' 'c5' 'yar12' 'h...

ungefär 12 år ago | 0

| accepted

Answered
Error libXft.2.dylib on MAC
I have found the solution for the question: MATLAB sets its own DYLD_LIBRARY_PATH on the Mac to get over some restrictions of...

ungefär 12 år ago | 0

| accepted

Load more