Community Profile

photo

Kojiro Saito

MathWorks

Last seen: Today Actif depuis 2016

Application Engineer at The MathWorks (Japan).

Experience:
-Remote Sensing
-Image Processing
-GIS including WebGIS
-Parallel computing
-Distributed computing

Special interest:
-Parallel / distributed computing
-Enterprise solution (Web, database)
-GIS, mapping

DISCLAIMER: Any advice or opinions posted here are my own, and in no way reflect that of MathWorks.

NOTE: Please do not send me individual messages or questions, as I will not be able to respond to them. If you have technical questions about MATLAB, please use the various resources on MATLAB Central. If you have a valid license, you can also use Technical Support.

Statistiques

All
  • Thankful Level 3
  • Guiding Light
  • Revival Level 3
  • Solver
  • 36 Month Streak
  • First Review
  • Knowledgeable Level 5
  • First Answer

Afficher les badges

Content Feed

Afficher par

A répondu
compiling custom made trained deep nn with Library Compiler for calling from Python
In Library Compiler, Support Packages are automatically included. If not, you can manually add the support package by "-Z p...

4 jours il y a | 0

A répondu
web app does not show UIAxes
In R2023a general release, there was a bug regarding axes and web apps. [Bug Report] MATLAB graphics objects, such as axes, plo...

4 jours il y a | 0

A répondu
I can't set up the MATLAB Production Server dashboard, why?
This issue was discussed in the comments of another post and solved. First add "<MATLAB_Production_Server_Install_Root>\bin\wi...

8 jours il y a | 0

| A accepté

A répondu
MATLABからSimulinkを開く際の解決策が実行できない
インストーラーのフォルダーではなく、MATLABがインストールされたフォルダー(デフォルトではC:\Program Files\MATLAB\R2023a)の中の\bin\win64にある3つのexeファイルを除外リストに追加してみてください。

11 jours il y a | 2

| A accepté

A répondu
マトラボコードのブレークポイントについて
指定した範囲に全てブレークポイントを貼る質問への直接的な回答ではないのですが、デバッグのコツとして「ステップ」とステップイン」があります。 ブレークポイントを貼った行で実行が一時停止されますが、その後に「ステップ」をクリックすると次の1行を実行します...

15 jours il y a | 3

A répondu
File Exchange上のコードをMATLAB onlineで用いる
File Exchangeのコードがどのような形態でダウンロードできるようになっているかによりますが、ダウンロードボタンがあればそのZipファイルリンクを取得できるのでMATLAB Onlineからwebsaveで保存できますし、GitHubのリンクがあれ...

22 jours il y a | 1

A répondu
Opening PDF from web app
web('xxx.pdf') works in compiled Web App, but you need to add the pdf in the "Files required for your app to run" panal by editi...

27 jours il y a | 0

| A accepté

A répondu
Service error MatLab Web app server 2021b
I found "Failed to add local user" error. Could you try the following answer? Why do I get Error Failed to add local user: "MA...

27 jours il y a | 0

A répondu
陸域をmaskする方法
確かに全世界のデータをそのまま適用すると、isinteriorのところで「要求された 1323x4502250 (44.4GB) 配列は、最大配列サイズの基本設定 (31.8GB) を超えています。これにより、MATLAB は反応しなくなる可能性があります...

28 jours il y a | 0

A répondu
陸域をmaskする方法
isinterior関数 (Mapping Toolbox)を使用して、陸域のポリゴンの内か外かを判定し、ポリゴン内の流速データをNaNに変換すれば実現できます。 以下がコード例です。流速データのuv.matが手元に無いので、ドキュメントに含まれている風...

29 jours il y a | 0

A répondu
Simulink スタートページに飛ばない
「トレンドマイクロ社製​のセキュリティソフト​ウェアが常駐している​環境で、Simuli​nk や App Designer などの Web ベースのアプリケーシ​ョンを使用できないの​はなぜですか?」と同件かと思われます。 セキュリティ対策ソフトを使用...

environ un mois il y a | 1

| A accepté

A répondu
!(エスケープ演算子)内で変数を用いる
sprintfコマンドでフルコマンドの文字列を作り、MATLABコマンドを実行するevalで感嘆符演算子付きでおこなうか、OSのコマンドが実行できるsystemコマンドで感嘆符抜きで実現できます。 evalコマンドの例 cmd = sprintf("!...

environ un mois il y a | 1

| A accepté

A répondu
解析区間の指定方法について
いくつかやり方はありますが、find関数でfind(x, n)である条件のn番目の点を見つけられるので、これを使ってみたら簡単かと思います。 load('data.mat') plot(a) % 加速度の最大値の20%以下の最初の点 (n=1) x...

environ un mois il y a | 1

| A accepté

A répondu
開発版のWeb App Serverを使って社内イントラ上でアプリを共有する方法
サーバー側で必要な手順は以下のとおりです。 【スペックの前提】 「MATLAB Web App Server の開発用バージョンのシステム要件」に要件がまとまっています。 抜粋ですが、OSはMATLABがサポートしているもの (R2022aだとWin...

environ un mois il y a | 2

| A accepté

A répondu
MATLAB の writetable​関数で、既存のExcelファイルの最終列にテーブルを追記できますか
writetableのappendでは行の末尾にデータが追加されるので、末尾の列にデータを追加するにはExcelのシート全体を上書きするか、Rangeで書き込み位置を指定することで実現できます。 3列のExcelファイルに4列目をセルD1に追加した例です...

environ un mois il y a | 1

| A accepté

A répondu
カラーマップの配色を自分で指定するには?
カスタムのカラーマップを作成するのは可能で、colormap「カスタムのカラーマップを作成」にドキュメントがあります。 下記のコードで質問欄に添付してもらったカラーマップを作ってみます。interp1などで色を256色に補間すると滑らかなカラーマップ...

environ un mois il y a | 1

| A accepté

A répondu
アドオンの入手をし,アドオンエクスプローラーを起動したいのですが、以下のようなエラーが出てしまい、入手できません。
エラーコード1073741819についてはR2023aでいくつか報告が上がっていて、こちらの回答にまとまっていますが、ウイルス対策ソフトが原因の場合が多いです。 その場合、回答にあるように下記の実行ファイルをウイルス対策ソフトの信頼できるプログラムに追加...

environ 2 mois il y a | 1

| A accepté

A répondu
What do I need to install Matlab web Apps in my university server?
If your institution has Campus-Wide License and MATLAB Web App Server is included, you might ask the license admin to request p...

environ 2 mois il y a | 0

A répondu
How to pass an array in Matlab Production Server
You need to include "[" and "]" for passing arrays to MATLAB Production Server. {"nargout":1, "rhs": [[10, 20, 30, 40, 50]]} ...

environ 2 mois il y a | 0

| A accepté

A répondu
Colorbarのエラーについて
ドキュメントの例は最新版(現時点ではR2023a)のバージョンのものになっており、過去のバージョンのドキュメントは下記のようにhttps://jp.mathworks.com/help/releases/R2020a/matlab/ref/tiledlay...

environ 2 mois il y a | 0

| A accepté

A répondu
拡張子のついていないファイルの拡張子をつけたい。
フォルダーのファイル一覧取得はdirコマンドやlsコマンドででき、ファイル名変更はmovefileなどでできます。 imageフォルダーに「〇〇〇〇.〇〇〇〇.〇〇〇〇」のファイルがあると仮定し、全て「〇〇〇〇.〇〇〇〇.〇〇〇〇.dcm」にリネームする...

environ 2 mois il y a | 1

| A accepté

A répondu
GradCAMの画像を保存したい
例の最後にexportgraphicsのコマンドを入れれば保存できます。 imshow(img); hold on; imagesc(map,'AlphaData',0.5); colormap jet hold off; title("Gra...

2 mois il y a | 2

| A accepté

A répondu
インストールする製品の選択でMATLABが表示されない。
ダウンロードについてのよくある質問の「ソフトウェア保守サービスが有効ではない場合は、有効期間中に提供された製品のみが表示されます この場合、新製品は表示されず、ダウンロードすることができません」に該当していませんでしょうか? たとえば、ソフトウェア保守の...

2 mois il y a | 1

| A accepté

A répondu
dicomファイルの連続したトリミング画像をdicomファイルに保存したい。
dicomwriteのエラー内容の情報もあると確実ですが、取り急ぎ気付きとしてフォルダーfolderの下に出力されるようになっていないので、以下のように修正が必要と思います。 dicomwrite(I2, fullfile('folder', ['Acu...

3 mois il y a | 0

| A accepté

A répondu
プロパティ内で定義した配列を、メソッド内で使おうとしたら、「名前 app.~ を解決できません。」のエラーが出る。
プライベート関数Fnc1にappのオブジェクトが渡されていないのが原因です。 function Fnc1(app,i2cboard) に変更して、呼び出す際に Fnc1(app,i2cboard) のようにappを入れてみてください。

3 mois il y a | 0

| A accepté

A répondu
Why is my GUI program producing an error when I 'Run' it?
sampleEntropyという関数がMATLABの検索パスに入っていないためです。 sampleEntropy.mファイルがあるフォルダーをaddpathで検索パスに追加すれば実行できるようになると思います。

3 mois il y a | 0

| A accepté

A répondu
App designerを利用して、トグルボタンでのON/OFF設定について
トグルボタンの1つ上の階層のボタングループを選択している状態で右クリックからコールバックを指定できます。 SelectionChangedFcn や ButtonDownFcn コールバックを使えば良いと思います。

3 mois il y a | 1

| A accepté

A répondu
MATLAB appのドロップダウンボックスについて
CSVのファイル値によってapp.DropDown.Itemsの中身を切り替えれば実現できます。 t = readmatrix('1.csv'); if t == 0 app.DropDown.Items = {'A','B','C','D'...

3 mois il y a | 1

| A accepté

A répondu
cygwinフォルダのシェルスクリプト(.sh)を実行したい。
シェルスクリプトの編集画面が表示されたのは、.shファイルのWindowsの既定のプログラムがエディターになっているからではないでしょうか。 以下のようなコードで実行ができると思います。 system('C:\cygwin64\bin\sh C:\cy...

3 mois il y a | 1

| A accepté

A répondu
配列行数が違うものを連結する方法をおしえてください。
こちらの回答が参考になると思います。同じ行数にするようにzerosやnanで埋めて配列を作るか、セル配列を作るかのやり方があります。 nanで埋める方法 AA = [1:1:10]'; BB = [1:1:5]'; CC = [AA,[BB;nan...

4 mois il y a | 1

| A accepté

Charger plus