統計
MATLAB Answers
7 質問
0 回答
ランク
of 170,997
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
if i have a string say 'ec john nick' .how to delete ec and retain 'john nick'?
.
10年弱 前 | 1 件の回答 | 0
1
回答質問
if i have a column containing names (first,middle also the last name). how do i delete their first name ?
data is read from excel using xlsread
10年弱 前 | 0 件の回答 | 0
0
回答質問
if i have a excel sheet with 1st column containing names and second containing phone numbers(say 10 digit number).how do i read it to matlab ?
i tried using xlsread,but it returns a approximated floating point value.
10年弱 前 | 1 件の回答 | 0
1
回答質問
I know the below instruction gives a matrix of 6 by 6 which has numbers from 1 to 10 . But if i want to limit the numbers ,like if i want 1 to come in matrix thrice, two repeat 10 times so on .how do i do that?
randi(10,6,6)
約10年 前 | 1 件の回答 | 0
1
回答質問
how to get numerical values as well as texts in a single matrix after reading data from a excel file ?
[num,txt]=xlsread(filename,sheet) here num contains all numerical value and nan (not a number)and txt contains all the texts.no...
10年以上 前 | 1 件の回答 | 0
1
回答質問
how to intialize a variable only once?the below written code should execute only once.later the value must b retained. how it is done
example persistent a if isempty (a) a=0; end
11年弱 前 | 2 件の回答 | 0
