Beantwortet
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...

etwa 14 Jahre vor | 2

Beantwortet
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...

etwa 14 Jahre vor | 0

Beantwortet
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...

etwa 14 Jahre vor | 0

Beantwortet
zoom using webcam
doc cameratoolbar This has functions for zoom, pan, tilt etc..

etwa 14 Jahre vor | 1

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 1

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

etwa 14 Jahre vor | 3

| akzeptiert

Beantwortet
exporting to an excel file
this link should help.. <http://www.mathworks.com/help/techdoc/ref/xlswrite.html> doc xlswrite

etwa 14 Jahre vor | 1

| akzeptiert

Beantwortet
Double integration
Use dblquad <http://www.mathworks.com/help/techdoc/ref/dblquad.html> doc dblquad

etwa 14 Jahre vor | 0

Beantwortet
merging the matrices
try c=[]; for i=1:size(a) d(:,:)=[a(i,:);b(i,:)]; c=[c;d]; end c

etwa 14 Jahre vor | 0

Beantwortet
Karnaugh map
this might be helpful.. <http://www.mathworks.com/matlabcentral/fileexchange/6853-kmap>

etwa 14 Jahre vor | 1

| akzeptiert

Beantwortet
patient database
I think you need the MARLAB gui development environment to build the gui. Rest of the coding will be simple.. doc guide

etwa 14 Jahre vor | 1

| akzeptiert

Beantwortet
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..

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 17

| akzeptiert

Beantwortet
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(...

etwa 14 Jahre vor | 1

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 1

Beantwortet
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...

etwa 14 Jahre vor | 2

| akzeptiert

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

etwa 14 Jahre vor | 1

| akzeptiert

Beantwortet
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/...

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
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'); ...

etwa 14 Jahre vor | 9

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

etwa 14 Jahre vor | 2

| akzeptiert

Beantwortet
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 ...

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
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(...

etwa 14 Jahre vor | 0

Beantwortet
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...

etwa 14 Jahre vor | 0

| akzeptiert

Beantwortet
'Rank' function
doc rank The rank function provides an estimate of the number of linearly independent rows or columns of a full matrix....

etwa 14 Jahre vor | 0

Mehr laden