Statistics
0 Questions
9 Answers
RANK
1.117
of 295.527
REPUTATION
64
CONTRIBUTIONS
0 Questions
9 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
23
RANK
of 20.242
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154.057
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How can I create a table to work with, from this .txt?
Star Strider's response works for me. I am using 2016b. here is a modification to read col names. b = readtable('prueba.tx...
ongeveer 7 jaar ago | 0
How can I create a table to work with, from this .txt?
your readtable line is missing a '\n' maybe? readtable('prueba.txt','ReadVariableNames',false,'Format', ' %{dd/MM/yyyy}D %{...
ongeveer 7 jaar ago | 0
Find cell array and replace with another cell array in main cell array?
Not efficient -- see below... % code A = {true;true;true;false;false;true;true;true;false;true;true;true;false;false;false}...
ongeveer 7 jaar ago | 1
| accepted
Using writetable in a loop to save each iteration as a new line
use ['A' num2str(w)] where w = 1 or a loop var % code writetable(T,filename,'Sheet',1,'Range', ['A' num2str(w)])
ongeveer 7 jaar ago | 2
| accepted
Removing Xaxis and Yaxis values
% code x = rand(1,100); plot(x); set(gca,'XTick',[], 'YTick', [])
ongeveer 7 jaar ago | 15
| accepted
Create a Gray level Mask using Matlab and write the same as a gray level image.
When writing the bmp use uint8 values % code imwrite(uint8(mask),'mymask4.bmp') imshow(imread('mymask4.bmp'),[]); ...
ongeveer 7 jaar ago | 0
Opening a file that contains a user defined word
% code % Issue may be with how you are using Numbers % assumption: Numbers is a vector % convert Numbers to row vector ...
ongeveer 7 jaar ago | 0
| accepted
Removing the black background from a non-rectangular RGB image?
By definition in matlab the data is a rectangular matrix. you are wanting to change the transparency of image so the background ...
ongeveer 7 jaar ago | 0