Answered
what is the matlab code for barcode scanning?
Did you search the <http://www.mathworks.se/matlabcentral/fileexchange/index?utf8=%E2%9C%93&term=barcode File Exchange>?

13 years ago | 1

| accepted

Answered
how change the colors with heatmap ?
Doc on bioinformation tb says: HeatMap(Data, ...'Colormap', ColormapValue, ...) and see colormap, Set and get c...

13 years ago | 0

Answered
textscan not reading file properly
Could it be that the cells in Excel are defined as right-justified text? Try [num,txt,raw] = xlsread('data.xlsx') and ...

13 years ago | 0

Answered
dbstop if error: manually fixing the error and continue?
AFAIK: The answer is NO. It is not possible. However, # you can fix the line, but don't save # select the line, right-c...

13 years ago | 1

Answered
Match Substring in Cell Array and Copy To New Array
I understand approximately half of your question. Not more because * _"substring start"_ doesn't match _"ucla_financial= [ fi...

13 years ago | 1

| accepted

Answered
Access value in cell arrays
What you look for can be achieved with |cellfun|, see below. Indexing like |C{:}.field| is *not supported* (AFAIK). The s...

13 years ago | 3

| accepted

Answered
locked the computer using matlab
On Windows see: <http://technet.microsoft.com/en-us/library/dd315249.aspx Changing Computer State> Locking a Computer ...

13 years ago | 1

| accepted

Answered
assign a cell array to first row of another cell array
Try this: %% another_cell_array = cell( 3, 1 ); my_cell_array = {'my','cell','array'}; anothe...

13 years ago | 0

Answered
How to make a 1xNxM array NxM ?
Doc says: <http://www.mathworks.se/help/matlab/ref/squeeze.html squeeze>, Remove singleton dimensions

13 years ago | 4

| accepted

Answered
Restore Code Analyzer warnings to factory defaults
With R2012a File | Preferences | Code Analyser | Active Settings | "tool-drop-down-menu-to-the-right" | default

13 years ago | 0

| accepted

Answered
Why is "findstr" not recommended compared to strfind.
R2012a says: "Note: findstr will be *removed* in a future release. Use strfind instead." This is a reason to replace |findstr| i...

13 years ago | 2

| accepted

Answered
Create a graph with date axis
Search Answer for <http://www.mathworks.se/matlabcentral/answers/?search_submit=answers&query=date+xaxis&term=date+xaxis date xa...

13 years ago | 0

Answered
describing variable in gui
_"main page workspace"_ is not according to Matlab nomenclature. See the help topic, <http://www.mathworks.se/help/matlab/matla...

13 years ago | 0

| accepted

Answered
create plot object for future use
AFAIK: Something like lineh.plot is not possible. However, define a function handle line_fh = @() plot(x,y,'-...

13 years ago | 0

| accepted

Answered
Timer function exception won't propagate to the calling script
See <http://www.mathworks.se/matlabcentral/answers/65694-debug-code-invoked-by-timer Debug code invoked by timer>

13 years ago | 0

Answered
Sorting a cell containing a set of structures?
"Everything" is possible with Matlab, but not always in one line:-) Since neither |dat{:}.('R')| nor |dat{:}.R| is not suppor...

13 years ago | 0

| accepted

Answered
how to compare 2 different time in matlab
I have not reproduced your: _while datenum of both gives me a same number_. Should work: %% sdn1 = datenum( '21:4...

13 years ago | 3

| accepted

Answered
How to pass handle without using nested functions?
Callbacks are invoked from the base workspace. Thus, the arguments passed when calling the callback-function must be in the base...

13 years ago | 0

| accepted

Answered
Assign user-input as name of variable in for loop
The title of your question makes me think you should read <http://matlab.wikia.com/wiki/FAQ#How_can_I_create_variables_A1.2C_A2....

13 years ago | 0

| accepted

Answered
findobj for multiple 'Tag's
A shot in the dark with R2012a. This returns handles rather than an error message >> findobj(0,'Tag',{'Name1','Name2','Na...

13 years ago | 1

Answered
index out of bounds because numel(x)=1.
This script %% x(1)=50; x(2)=45; x(3)=89; x(4)=88; disp(x) for ii=1:1:4 ...

13 years ago | 0

| accepted

Answered
Clear Global Workspace from GUI Pushbutton
_"global (main) workspace"_ I assume/guess you refer to the base workspace. Try something like evalin( 'base', 'clea...

13 years ago | 2

Answered
why "datestr" in matlab and date format cell in excell doesnt match?
Hint: >> datestr( 40667, 'yyyy-mm-dd HH:MM:SS' ) ans = 0111-05-05 00:00:00 Start of time with Matlab is year...

13 years ago | 0

| accepted

Answered
Data import processing doesn't import all of the data due to breaks with strings of words, need help with how to program it to skip words.
See <http://www.mathworks.se/matlabcentral/answers/60387#answer_72980 Reading and grouping data from file>

13 years ago | 0

Answered
Textscan with repeated header lines. Remove the repeated header lines.
See <http://www.mathworks.se/matlabcentral/answers/60387#answer_72980 Reading and grouping data from file>

13 years ago | 1

| accepted

Answered
Can REGEXP map values from different parts of a text file?
This seems to work. buf = fileread( 'cssm.txt' ); rex = '(?<=Time Tag: )([\d\.]+).+?(?<=SV ID:[ ]+)(\d+)'; cac...

13 years ago | 1

| accepted

Answered
How can I deal with swedish words in matlab.
Joel on Software wrote <http://www.joelonsoftware.com/articles/Unicode.html The Absolute Minimum Every Software Developer Absolu...

13 years ago | 1

Answered
Code for Inpainting of images!!!
Did you search the File Exchange for <http://www.mathworks.se/matlabcentral/fileexchange/index?utf8=%E2%9C%93&term=inpaint inpai...

13 years ago | 0

Answered
Any way to get the "current" class
This might be a start. (TODO: not a class, class in package, function in package.) >> MyTestClass.Update Class_...

13 years ago | 0

| accepted

Answered
Prevent script from execution until a condition is met. please!
_"I want my script to pause"_ * uiwait, Block program execution and wait to resume Look up |uiwait| in the documentation. ...

13 years ago | 0

| accepted

Load more