질문


Bioinformatics toolbox - featuresmap question
Hi, I'm trying to plot the annotations corresponding to a chromosome, and I would like to plot only a small region of the chr...

12년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
error in the code for markov chain
I guess you want a matrix Chain which has in the end on each row some probabilities... You try to put a vector curr_state into ...

12년 초과 전 | 0

| 수락됨

질문


BioMap bug (bioinformatics toolbox)
Hi, I try to construct a BioMap structure from a BAM file. I use info = baminfo(bamFilename,'ScanDictionary',true); b...

12년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Matlab 2012a
Guess what? It was released! :) I had a good intuition yesterday :)

12년 초과 전 | 0

질문


Matlab 2012a
It's March 1st. When to expect a new Matlab release (2012a)? :) I'm eager to see the new additions to the documentations :)

12년 초과 전 | 답변 수: 4 | 0

4

답변

답변 있음
Setting the number of rows and columns in a UItable
16 rows and 3 columns doesn't seem to be a "n by n table" ... Anyway, the examples from http://www.mathworks.com/help/techdo...

12년 초과 전 | 0

답변 있음
'Legend' Command shows wrong symbols (R2011b)
The symbols are set in the plot commands, not in the legend command. Check this example: M = rand(6, 20); plot(M(1, :),...

12년 초과 전 | 0

답변 있음
Default Figure Fonts
The font name is 'Arial' not 'Ariel'... You can change the font by set(gca, 'FontName', 'Arial') On one of the Matlab ...

12년 초과 전 | 8

| 수락됨

질문


open huge SAM files
Hi! I try to import a SAM (Sequence Alignment/Map) file (or parts of it) into Matlab but because it has 10GB, I don't know any g...

12년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to rotate the image so that the barcode horizontal??
J = imrotate(rgb,90 + barAngle,'bilinear','crop'); seems to give the right result. I think it depends if the Hough transform det...

12년 초과 전 | 0

| 수락됨

답변 있음
how can i use imdistline to calculate the pixel in the image?
Here is an example: % load an image load flujet imagesc(X); % set up the measuring tool h = imdistline(gca); api...

12년 초과 전 | 0

답변 있음
Question about Out of Memory
Read here: http://www.mathworks.com/help/techdoc/ref/textscan.html and http://www.mathworks.com/help/techdoc/ref/textread.htm...

12년 초과 전 | 0

| 수락됨

질문


colormapeditor
Hi, I would like to use |colormapeditor| inside a GUI, and I want a pause in the program that waits for me to finish with the...

12년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
Convert Cell Array To Matrix
I would convert the cell array d to a matrix after the |for| loop, e.g. v = cell2mat(d); Also if you use d(i)=[] in the loop tha...

12년 초과 전 | 0

질문


strange error in Simbiology
Hi, I have some strange error (maybe bug) in Simbiology. I run a GlobalSearch optimization algorithm, and usually it runs fi...

12년 초과 전 | 답변 수: 1 | 0

1

답변

질문


imdistline
Hi Is it possible to disable the distance label on the line created by imdistline? If the two end points are too close, then...

거의 13년 전 | 답변 수: 2 | 0

2

답변

질문


How to cite a User's Guide?
Hi, I would like to put a reference in an article with the Image Processing User's Guide. I found on Google Scholar some old...

거의 13년 전 | 답변 수: 4 | 1

4

답변

답변 있음
open DeltaVision file (.dv)
I found a solution meanwhile, and maybe someone else needs to know the solution. Download from here the file |bfopen.m| http:...

거의 13년 전 | 0

| 수락됨

질문


GUI buttons
Hi, I created a GUI with some buttons and I noticed the nice blue color which appears over each button when the mouse is over...

거의 13년 전 | 답변 수: 2 | 0

2

답변

질문


getimage problem
Hi, I would like to use |getimage| or some other function to capture the current figure which has for example an image + a line ...

거의 13년 전 | 답변 수: 1 | 0

1

답변

질문


open DeltaVision file (.dv)
Hi, Is it possible to import in Matlab a DeltaVision file (.dv)? Thank you, Razvan

거의 13년 전 | 답변 수: 1 | 0

1

답변

질문


get initial amounts of some species
Hi, I want to tune the initial amount of one of the species in a simbiology model to fit experimental data but I can't do...

거의 13년 전 | 답변 수: 1 | 0

1

답변

질문


Matlab crash; Java HotSpot(TM) 64-Bit Server VM warning
Hi, I run some simulations in Matlab and sometimes the Matlab crashes and creates some files java.log.(some number). These fi...

대략 13년 전 | 답변 수: 2 | 0

2

답변

답변 있음
calling random variables and using them in a loop
I don't understand your question very well... Do you have a system of 10^4 equations and you want to fit the 3 parameters: a, b,...

대략 13년 전 | 0

답변 있음
How to set the time sample with Simbiology
You can use resample like this newSimDataObj = resample(simDataObj, timeVectorOfExpData); You can also fit the paramet...

대략 13년 전 | 1

질문


SBML import in Matlab
Hi, I try to import this model (.sbml format) in Simbiology http://www.biomedcentral.com/1752-0509/3/70/additional/ but it ...

대략 13년 전 | 답변 수: 1 | 0

1

답변

질문


Fluctuations in Simbiology
Hi, I try to run a simulation in Simbiology in which a parameter fluctuates during the simulation. I have a few reactions whi...

대략 13년 전 | 답변 수: 1 | 0

1

답변

답변 있음
xlswrite and excel 2010
Try A=[1:10]'; xlswrite('foo.xls',A,'Sheet1');

대략 13년 전 | 0

답변 있음
how in matrix insert other matrix
Try [r,c]=size(B); xpos=2;ypos=2; A(xpos:xpos+r-1,ypos:ypos+c-1)=B; , where xpos and ypos are the positions where ...

대략 13년 전 | 0

| 수락됨

질문


KeyPressFcn problem
Hi everyone, I have a problem regarding the KeyPressFcn of a figure. I try to make a GUI in which I want to control somethin...

대략 13년 전 | 답변 수: 2 | 0

2

답변

더 보기