Answered
Running MATLAB on a Microsoft Windows Surface Pro 4
I don't see why not. It runs on my Surface Pro 3. You can see the <https://www.mathworks.com/support/sysreq/current_release/ sys...

8 years ago | 0

| accepted

Answered
how can i hide a text message in the lsb plane of cover image?
<https://www.mathworks.com/matlabcentral/fileexchange/41326-steganography-using-lsb-substitution This> File Exchange submission ...

8 years ago | 0

Answered
How to develop andriod app using matlab?
<https://www.mathworks.com/videos/matlab-to-iphone-and-android-made-easy-107779.html This video> has examples on how you can do ...

8 years ago | 1

| accepted

Answered
Textscan: 2013b VS 2016a
You're trying to convert one of the fields to a <https://www.mathworks.com/help/matlab/ref/datetime.html?searchHighlight=datetim...

8 years ago | 0

| accepted

Answered
how to calculate GCD in matlab
Look <https://www.mathsisfun.com/greatest-common-factor.html here> to find the logic of how to calculate the greatest common fac...

8 years ago | 0

Answered
Find data from a low level text file
If it's always the same number of header lines you can use the <https://www.mathworks.com/help/matlab/ref/importdata.html#inputa...

8 years ago | 0

Answered
hello there, can you please help me on this
You're trying to do |n choose k|. Check the <https://en.wikipedia.org/wiki/Combination wiki page> and the doc for <https://www.m...

8 years ago | 0

| accepted

Answered
What is my License number?
You should contact <https://www.mathworks.com/support/contact_us/index.html?s_tid=contact_us_support_cust_serv MathWorks Support...

8 years ago | 0

Answered
Does anyone know to convert clock time into decimal time?
# Use <https://www.mathworks.com/help/matlab/ref/num2str.html |num2str|> # Lop off the last two characters with |a(end-1:en...

8 years ago | 0

Answered
Who can help me with defining a regular expression?
str1 = '@5%'; str2 = '@2.5%'; regex = '\d*\.?\d+'; [s1 e1] = regexp(str1, regex); [s2 e2] = regexp(str2, regex); ...

8 years ago | 0

Answered
How to do a binarization of this image?
Take a look at <https://www.mathworks.com/help/images/image-enhancement-and-analysis.html this example> and <https://www.mathwor...

8 years ago | 0

Answered
*.dat file reader
<https://www.mathworks.com/help/matlab/ref/readtable.html |readtable()|> should do it. Take a look at |'HeaderLines'| if needed....

8 years ago | 0

Answered
how can i recrord a video from webcam using matlab ?
You can use the <https://www.mathworks.com/products/imaq/features.html#app-for-image-and-video-acquisition Image Acquisition Too...

8 years ago | 0

Answered
Plot data from 2 different files in the same folder
It doesn't matter what files the data is in. You need to load the data and run the associated plotting commands.

8 years ago | 0

| accepted

Answered
Hi, i need to find out the eigenvalues of a 8000x8000 matrix system by eig() function of matlab?? may i know the normal simulation time of the eig() function of such a huge matrix in MATLAB?
It's going to depend on the matrix, correct? Running a simulation on my machine (Surface Pro3) I was able to modify the examp...

8 years ago | 0

Answered
How to find multiple min values and index them for a FOR loop
The first thing I would do is find what the minimum value is. You can do this by using the <https://www.mathworks.com/help/matla...

8 years ago | 0

Answered
Re: find()
From what I can tell in the <https://www.mathworks.com/help/matlab/ref/find.html#budqvnh-1 |find|> documentation the answer is y...

8 years ago | 0

Answered
How to convert xml to excel sheet...?
Use <http://www.mathworks.com/help/matlab/import_export/importing-xml-documents.html |xmlread|> to import your data and <http://...

8 years ago | 0

Answered
download data from a web page
Use <http://www.mathworks.com/help/matlab/ref/webread.html webread>

8 years ago | 0

| accepted

Answered
Write a function (Not a built-in function) that converts a given number n in base 2 to base 10
There's a builtin function called bin2dec which turns a binary string into a decimal number. So if you convert the data into a s...

8 years ago | 0

Answered
How to set different colors for the text in a legend ?
Use TeX formatting to set the colors. x = -pi:pi/20:pi; y1 = sin(x); y2 = cos(x); plot(x,y1,'-ro',x,y2,'-.b'); ...

8 years ago | 4

Answered
Writing a result on an existing table?
Are you using matrices or tables? It's not completely clear to me in your post. If it's a matrix you can do the calculation and...

8 years ago | 0

| accepted

Answered
How to read\open a csv file with millions of rows and hundreds of coloumns to compare/delete and save
You can do this with <https://www.mathworks.com/help/matlab/ref/textscan.html textscan>, but your <https://www.mathworks.com/hel...

8 years ago | 0

Answered
How can i Delete columns from many csv files?
You can use <https://www.mathworks.com/help/matlab/import_export/what-is-a-datastore.html datastore()> to read the files and the...

8 years ago | 0

Answered
Hi, how can i import data from many worksheet in Excel? Can i used a cicle for?please help me
You're trying to use i as your loop index. (Conventionally ii would be used to avoid confusion with <https://www.mathworks.com/h...

8 years ago | 0

Answered
What is MathWorks’ response to the Shellshock vulnerability?
MathWorks products such as MATLAB, Simulink, and Toolboxes do not contain the Bash shell and are not affected by the <https://en...

9 years ago | 0

| accepted

Question


What is MathWorks’ response to the Shellshock vulnerability?
The <https://en.wikipedia.org/wiki/Shellshock_(software_bug) Shellshock> security vulnerability was disclosed on September 24, 2...

10 years ago | 2 answers | 0

2

answers