답변 있음
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...

14년 초과 전 | 2

답변 있음
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...

14년 초과 전 | 0

답변 있음
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...

14년 초과 전 | 0

답변 있음
zoom using webcam
doc cameratoolbar This has functions for zoom, pan, tilt etc..

14년 초과 전 | 1

| 수락됨

답변 있음
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...

14년 초과 전 | 1

| 수락됨

답변 있음
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...

14년 초과 전 | 0

| 수락됨

답변 있음
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...

14년 초과 전 | 0

| 수락됨

답변 있음
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 ...

14년 초과 전 | 3

| 수락됨

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

14년 초과 전 | 1

| 수락됨

답변 있음
Double integration
Use dblquad <http://www.mathworks.com/help/techdoc/ref/dblquad.html> doc dblquad

14년 초과 전 | 0

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

14년 초과 전 | 0

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

14년 초과 전 | 1

| 수락됨

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

14년 초과 전 | 1

| 수락됨

답변 있음
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..

14년 초과 전 | 0

| 수락됨

답변 있음
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...

14년 초과 전 | 17

| 수락됨

답변 있음
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(...

14년 초과 전 | 1

| 수락됨

답변 있음
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...

14년 초과 전 | 1

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

14년 초과 전 | 1

답변 있음
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...

14년 초과 전 | 2

| 수락됨

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

14년 초과 전 | 1

| 수락됨

답변 있음
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/...

14년 초과 전 | 0

| 수락됨

답변 있음
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'); ...

14년 초과 전 | 9

| 수락됨

답변 있음
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...

14년 초과 전 | 0

| 수락됨

답변 있음
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...

14년 초과 전 | 0

| 수락됨

답변 있음
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...

14년 초과 전 | 2

| 수락됨

답변 있음
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 ...

14년 초과 전 | 0

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

14년 초과 전 | 0

| 수락됨

답변 있음
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(...

14년 초과 전 | 0

답변 있음
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...

14년 초과 전 | 0

| 수락됨

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

14년 초과 전 | 0

더 보기