Réponse apportée
array
You are tying to list data in an array starting form 0.1 to 0.5 with a difference of 1 and so it will show only the first data p...

plus de 14 ans il y a | 2

Réponse apportée
append/save same variable with updated values into .mat file(row-wise)
You are always overwriting the same variable 'out' in each of the iterations.. for col = 1:10 out = zeros(1,100000...

plus de 14 ans il y a | 0

Réponse apportée
Divide 256*256 image into 4*4 blocks
Try this example: A=rand(16,16); %matrix of 16*16 [a b] = size(A); % get the size of A =16*16 c=4;d=4; % resh...

plus de 14 ans il y a | 0

Réponse apportée
zoom using webcam
doc cameratoolbar This has functions for zoom, pan, tilt etc..

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Writing a shared variable at the end of a parfor loop
This mat_for _all will have results of all the iteration in it, to check the result of each iteration use: mat_for_all(iteration...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
I took this code from i have a viva tomorrow plz explain me the code
Dont know if this code works.. the function of each line is inthe comments i.e after the % clear X % clears the variab...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Travelling Salesperson or other MATLAB tool for meter readers
Your problem is similar to the Multiple Traveling sales persons problem.. here is a link that might help <http://www.mathwork...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Can I make a scatterplot with custom marker symbols?
Short answer: NO. User defined markers cannot be used in MATLAB.. Though you could draw (image) them in each location.. The ...

plus de 14 ans il y a | 3

| A accepté

Réponse apportée
exporting to an excel file
this link should help.. <http://www.mathworks.com/help/techdoc/ref/xlswrite.html> doc xlswrite

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Double integration
Use dblquad <http://www.mathworks.com/help/techdoc/ref/dblquad.html> doc dblquad

plus de 14 ans il y a | 0

Réponse apportée
merging the matrices
try c=[]; for i=1:size(a) d(:,:)=[a(i,:);b(i,:)]; c=[c;d]; end c

plus de 14 ans il y a | 0

Réponse apportée
Karnaugh map
this might be helpful.. <http://www.mathworks.com/matlabcentral/fileexchange/6853-kmap>

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
patient database
I think you need the MARLAB gui development environment to build the gui. Rest of the coding will be simple.. doc guide

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
DCS parallel config validation - make the scratch directory during validation otherwise validation fails (any workarounds)
This request has been added as an enhancement form a future release..

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Insert Degree Symbol in Axes Title
You can create any character by finding its Unicode value and converting that number into a character, using the “char” function...

plus de 14 ans il y a | 17

| A accepté

Réponse apportée
Getting an image
If you image is on a path in the local machine you can import it: File> Import Data Choose: Enable:All Files(...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
2D to 3D
I'm not sure about the cat3 function. It is not part of MATLAB, is it from file exchange? or any particular toolbox. cat is f...

plus de 14 ans il y a | 1

Réponse apportée
converting a struct array fildname to an array
col = [o(:).color]; new_color=reshape(col,3,[])' This should help

plus de 14 ans il y a | 1

Réponse apportée
How to run 3 programs simultaneously?
I do not think there is a way to control which matlab processes run on a particular core. Matlab has a lot of inbuilt function t...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
Convert time
You could try datestr,datenum doc datestr doc datenum Eg. Suppose you have 8:15 in the text, xls file, import it ...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Putting two x axes for comparison
this should help <http://www.mathworks.com/help/techdoc/creating_plots/f1-11215.html http://www.mathworks.com/help/techdoc/...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
how to save a graph in jpg or any other image format
You can do it programatically as: figure1 = figure; axes1 = axes('Parent',figure1) hold(axes1,'all'); ...

plus de 14 ans il y a | 9

| A accepté

Réponse apportée
how to plot a graph without any marking in axes?
By markings, do you mean the Ticks on the Xaxis and Yaxis.. you can remove them by: figure1 = figure; axes1 = axes('P...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
save instruction
You would rather do well to save the data in a vector than write a mat file every time the loop runs: This video should help...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
save data calculated in a loop
This video should help: < http://blogs.mathworks.com/videos/2007/08/20/matlab-basics-video/> You can svae the output in...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
r2011b remote file mirroring issues (non-shared file system with generic scheduler interface)
You might be finding residual effects of the upgrade to r2011b.. If the command window throws out a number of old jobs ...

plus de 14 ans il y a | 0

Réponse apportée
explaination about code line detection
doc radon *Radon* Radon transform Syntax R = radon(I, theta) [R,xp] = radon(...) Description ...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
plot a signal in the freq domain
try the following: define m and n; m=1; n=1; format long for f=1:100:100000; X=[X m*((sin(pi*f/2*m)*sin(...

plus de 14 ans il y a | 0

Réponse apportée
Error- simple matlab function
Try the following: X=[1:10]; Y=[11:20]; [a,b]=concatenatingAllDataSets(5,X,Y) You need to define the arguments for...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
'Rank' function
doc rank The rank function provides an estimate of the number of linearly independent rows or columns of a full matrix....

plus de 14 ans il y a | 0

Charger plus