photo

Chenchal


Last seen: 5년 초과 전 2017년부터 활동

Followers: 0   Following: 0

메시지

통계

MATLAB Answers

0 질문
9 답변

순위
1,167
of 300,756

평판
64

참여
0 질문
9 답변

답변 채택
0.00%

획득한 표
23

순위
 of 21,077

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 170,890

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • First Answer

배지 보기

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...

대략 8년 전 | 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 %{...

대략 8년 전 | 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}...

대략 8년 전 | 1

| 수락됨

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

대략 8년 전 | 2

| 수락됨

답변 있음
Removing Xaxis and Yaxis values
% code x = rand(1,100); plot(x); set(gca,'XTick',[], 'YTick', [])

대략 8년 전 | 15

| 수락됨

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

대략 8년 전 | 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 ...

대략 8년 전 | 0

| 수락됨

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

대략 8년 전 | 0

답변 있음
How do I combine two cell arrays into one cell array?
cell2mat(Q')

대략 8년 전 | 5