photo

Chenchal


Last seen: 5年以上 前 2017 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

0 質問
9 回答

ランク
1,167
of 300,799

評判
64

コントリビューション
0 質問
9 回答

回答採用率
0.00%

獲得投票数
23

ランク
 of 21,092

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,134

コントリビューション
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