Community Profile

photo

Toru Ikegami

Last seen: 2 días hace Con actividad desde 2020

Estadísticas

All
  • Knowledgeable Level 3
  • 6 Month Streak
  • Personal Best Downloads Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver
  • 5-Star Galaxy Level 3
  • GitHub Submissions Level 2
  • First Submission

Ver insignias

Content Feed

Ver por

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

más de 1 año hace

Resuelto


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

casi 2 años hace

Resuelto


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

casi 2 años hace

Resuelto


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

casi 2 años hace

Resuelto


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

casi 2 años hace

Resuelto


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

casi 2 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

casi 2 años hace

Respondida
mapにplotをする方法
こんにちは, そのまま関数 geoshow を使って任意の点にプロットをすることができます.マーカの形・サイズ・色などの指定は,関数 plot のオプションと同じ形式で指定することができます. f = figure('Position',[100 10...

casi 2 años hace | 2

| aceptada

Respondida
ある配列データS,S1,S2についてS=a*S1+b*S2となるような係数a,bの計算
こんにちは MATLABのバックスラッシュ演算子( \ )ひとつでご所望の計算を行うことが出来ます. 信号を二つの信号,の重ね合わせで表すというのを行列表記すると次のようになりますね. この線形方程式を係数ベクトルについて解けばよいわけですが,行...

alrededor de 2 años hace | 1

Respondida
周波数が時間的に増加していくプログラムについて
スペクトログラムに表示されるような瞬間的な周波数(instantaneous frequency,以下 ) は,信号の位相の時間微分で定義されるからというのがお答えになるでしょうか.  に対して  ですね. 単純なサイン波はを時間によらない定数として ...

más de 2 años hace | 2

| aceptada

Respondida
配列に数字を代入するプログラムについて
こんにちは, 一桁目だけを1から5で回すならば,次のようなコードはいかがでしょうか. x = (1:20)'; y = 10*(floor((x-1)/5))+mod(x-1,5)+1; disp(y);

más de 2 años hace | 1

| aceptada

Respondida
小数点以下の値だけ欲しい
こんにちは, x = 10*randn(2) y = x-fix(x) というのはいかがでしょう.負数を丸める方向によっては,次のような場合もありですね. y = x- floor(x)

más de 2 años hace | 1

| aceptada

Respondida
MATLABによる大まかな実行環境(CPU等)の取得・出力方法について
こんにちは.  [~,info] = system('systeminfo'); と,第2出力引数を使用することで,このコマンドの出力を文字列として取得することができます. さらに infoTxt = strtrim(string(splitli...

más de 2 años hace | 2

| aceptada

Respondida
最適化で収束が遅い時、後続コード実行を自動ストップする方法とは?
こんにちは, patternsearch をはじめ,最適化ソルバーの多くは exitflag というオプショナルな返り値をもちますので,これを利用すればソルバーが終了した原因を知ることができます. petternsearchドキュメンテーション(exi...

más de 2 años hace | 0

| aceptada

Respondida
行列の大きさをそろえる
こんにちは,元の行列のサイズは全て1行n列(n < 10)だと仮定しての解決策になりますが, A = [ 3 2 3] B = [ 6 9 4 1 4] に対して, A(end+1:10) = 0 B(end+1:10) = 0 でそれぞれ1行...

más de 2 años hace | 1

Respondida
構造体配列の要素の参照方法について
こんにちは. 関数 struct2cell を使うのがいちばん手っ取り早いかと思います. ドキュメンテーション struct2cell  構造体を cell 配列に変換 s.a = 1; s.b = [1,2]; s.c = 'test'; ...

más de 2 años hace | 1

Respondida
Image Acquisition Toolboxを用いて顕微鏡のカメラから画像を1分間隔で取得し,pc内に保存する方法について
こんにちは. ぱっと思いつくのは,video input オブジェクトのタイマー機能を使用する方法でしょうか. Creating Time-Lapse Video Using Timer Events (英語ページしかないみたいですね) video ...

más de 2 años hace | 1

| aceptada

Respondida
日時を検索値としてvlookupを使いたい
こんにちは. vlookup を使わない解をもうひとつ.テーブルをタイムテーブルに変換して使うというのはいかがでしょう.タイムテーブルを使うことで,許容誤差付きなど,わりと柔軟に時刻データを抽出することができます. 行時間および変数の型による time...

más de 2 años hace | 1

| aceptada

Respondida
複数データのインポートと統合
こんにちは, 同じ形式のファイルをある程度の数処理するのでしたら,データストアを利用してみるのはいかがでしょう.データストアの概要はドキュメントの 「データストア入門」を参照してください. 読み込みたいファイルが全て 'dataFolder' とい...

más de 2 años hace | 1

| aceptada

Respondida
ワークスペースにある構造体配列をcsvファイルで保存する方法
こんにちは, 構造体配列を CSV に保存したいとのことですが,「構造体」のまま保存することは出来ないので,テーブル型に変換してから保存する事になるかと思います.前提として,構造体配列の要素の各フィールドのデータ型は等しいとします(x(1).a とx(2...

más de 2 años hace | 1

| aceptada

Respondida
MATLABアプリで座標軸のラベルをアプリ実行後に入力する
こんにちは, 座標軸ラベルをアプリ起動後に変更することは可能です.可能ですが,座標軸オブジェクト(app.UIAxes)のプロパティ(app.UIAxes.XLabel.String もしくは app.UIAxes.YLabel.String )を変更す...

más de 2 años hace | 1

| aceptada

Respondida
filesが自動的に更新されてしまう
こんにちは, ひょっとして読み込む.mat ファイルの中に,変数 "files" が含まれていると言うことはありませんか?(含まれていなければ以下の記述は見当違いですので無視してください.) 関数 load をファイル名のみを指定して呼び出すと,ファイ...

más de 2 años hace | 1

Respondida
Wordcloudによる可視化で、絵文字の表示がされません。
こんにちは, wordcloud で使用しているフォントが絵文字に対応していない可能性があります.(日本語環境と英語環境ではデフォルトのフォントが違うので,それが原因だと思われます.)wordcloud の名前ー値引数でフォント名を指定すると期待通りに表...

más de 2 años hace | 2

| aceptada

Respondida
GUIアプリのタイトルバーとロゴの変更について
こんにちは. AppDesigner を使用されているのでしたら,UIFigure のプロパティインスペクターの「識別子」を開くと,Name と Icon を設定できます.(アイコンファイルはMATLAB Path が通っているフォルダに置いておく必要が...

más de 2 años hace | 0

| aceptada

Respondida
cell配列内に含まれる各配列のlengthをfor文を用いずに出力する方法
こんにちは, For文を使わないということで,パッと思い浮かぶのはセル配列の要素毎に処理を行い,結果をまとめて返す cellfun でしょうか.第1引数に処理関数を関数ハンドルの形で,第2引数に処理対象のセル配列を与えます. cellA = {one...

más de 2 años hace | 2

| aceptada

Respondida
How to not to use “eval” function in my case(Japanese)
ご質問の本質からずれた回答かもしれませんが,一旦.mat ファイルに保存して,ロードするというのはいかがでしょう. a = 1; b = 2; c = 3; tmp = {'a','b','c'}; save('hogehoge.mat',tmp{:...

más de 2 años hace | 1

| aceptada

Resuelto


Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...

alrededor de 3 años hace

Enviada


Directly Extract Part Of Speech (POS) Information from MeCab
The functions in this repository enable to extract direct output of MeCab tokenizer. 形態素解析器MeCabの品詞分類を直接読み出すためのラッパー関数です.

más de 3 años hace | 1 descarga |

Thumbnail

Enviada


matlab_word2vec_binary_reader
readW2Vbin - MATLAB utility to read binary word2vec embedding model file

casi 4 años hace | 1 descarga |

Enviada


Co-occurrenceAnalysis-and-visualization
The functions in this contribution help you perform co-occurrence analysis of the text documents and visualize the results.

casi 4 años hace | 1 descarga |

Thumbnail