Answered
it is not possible to start MATLAB due to the following desktop start error
It seems a Java issue. Please try following sequence to fix your MATLAB. 1. Uninstalling your MATLAB 2. Deleting the C:\Progr...

5 years ago | 0

Answered
how to learn "simulink onramp" in Japanese?
It depends on your langadge setting of your MATLAB. See: https://jp.mathworks.com/help/matlab/matlab_env/matlab-desktop-languag...

5 years ago | 0

Answered
How do I get my MATLAB editor to display and read characters in another encoding?
As dpb menstioned, the answer is ... no. As you expected, 'ja_JP.Shift_JIS' is used for Japanese encoding in Windows OS with Ja...

5 years ago | 0

| accepted

Answered
Simulinkモデル 接続先ポート番号の取得
Shoumeiさんのおっしゃる通り、何をどうされているのかよく分かりませんが、"Lineの接続先ブロックの何番目に接続されているのか"を判定するなら接続先のブロックのプロパティを使えばいいのではないでしょうか。 vdp hx2 = get_param(...

5 years ago | 0

Answered
change python version on linux matlab
Following documentation will help you. MATLAB Cannot Find Python https://mathworks.com/help/matlab/matlab_external/undefined-v...

5 years ago | 0

Answered
データインスペクターのデータをcsvファイルに変換
データインスペクターで選べるExport先は、To Workspaceかmatです。 モデルにブロックを付け加えたくないということであれば、データインスペクターからdouble timeseriesとしてWorkspaceに値を書き出して、その中にあるT...

5 years ago | 1

| accepted

Answered
GUIのフォルダ選択について
回答者: Jan の回答が参考になります。 https://jp.mathworks.com/matlabcentral/answers/24123-drag-and-drop-file-to-figure 私が知る限り、GUIDEやApp Desig...

5 years ago | 0

| accepted

Answered
Window環境がないOSでのMATLAB実行
以下のWebセミナーでAWSへの導入方法が解説されています。 How to Run MATLAB in the Cloud with Amazon Web Services https://jp.mathworks.com/videos/how-to-...

5 years ago | 0

Answered
vpasolve in for loop
"vpasolve" returns numerical values. Its output "ub" cannot be a sym variable. If you use "solve", you can use "isempty" and "br...

5 years ago | 0

Answered
double x-axis on loglog scale
You are welcome :-)

5 years ago | 0

Answered
sfunctionの生成時に行う調整可能なパラメータについて
構造体引数をもつレガシ関数によるバスの使用 https://jp.mathworks.com/help/simulink/examples/using-buses-with-legacy-functions-having-structure-argume...

5 years ago | 0

Answered
UDPモジュールの複数使用について
UDP によるマルチキャスト送受信は可能ですか? https://jp.mathworks.com/matlabcentral/answers/298279-udp によればJavaの機能をつかえばWorkaroundできるようです。 HTH

5 years ago | 0

Answered
double x-axis on loglog scale
This code may help you. X = rand(5); loglog(X) ax1 = gca; ax1.Box = 'off'; hold on; % create new axes with nothing but x...

5 years ago | 0

| accepted

Answered
fopenの出力する数字について
同じファイルに対してfopen関数を実行した場合にfileIDの数字が増えるのは、fopen関数を実行するたびに異なるfileIDが割り振られているからです。 fopen関数の仕様では、fileIDはDouble型の整数になっています。 1と2は標準出...

5 years ago | 3

| accepted

Answered
I have a microsocopy image which i am attaching. I have both .tif and .mat file for the image. I want the positions of all the bright spots there which correspond to the atoms.
I = imread('input.png'); I = imadjust(I); radius = [1, 10]; [centers, radii] = imfindcircles(I, radius); imshow(I), hold o...

5 years ago | 0

Answered
Simulinkモデルの強制終了
環境不明、操作不明なのでなんともいえませんが、bin\win64\dastudio.dll の読み込みに失敗しているようなので、何某かのサポートパッケージと、Dell バックアップアンドリカバリーとが相互干渉している可能性があります。 Workaroun...

5 years ago | 0

Answered
ある行列の一般逆行列を求める際にpinvを使用すると、フリーズしてしまいます。
行列のランクを確認すると、行列Bはランク落ちしています。 低ランクの行列であってもpinvで疑似逆行列計算はできますが、シンボリック演算で解を一意に定めるには時間がかかります。 syms h s A=[3^(1/2)/6,0,1/2,-3^(1/...

5 years ago | 2

| accepted

Answered
Plotting Two .mat Files
Hi Syafiq Faliq Alfan, Christmas season has come. I am also blind as Guillaume and Madhan Ravi mentioned. But the following cod...

5 years ago | 0

| accepted

Answered
detect correct startRow in fopen before textscan
Dear Laurent - san, "dlmread" is a function to read numbers, not for characters. So, it is impossible to read your header char...

5 years ago | 0

Answered
detect correct startRow in fopen before textscan
Hello Laurent - san, I analyzed your code and finally I found out a bug in "textscan" function with "while" loop!!! Reproducti...

5 years ago | 0

Answered
detect correct startRow in fopen before textscan
Hi laurent jalabert - san, textscan is little bit different from dlmread. In case of textscan, its "empty" output exists in ev...

5 years ago | 0

Answered
detect correct startRow in fopen before textscan
A while loop will help you. k = 0; while exist('D') ~= 1 try D = dlmread('yourfile.txt', '', k, 0); catch ...

5 years ago | 0

| accepted

Answered
複数データの結合方法について
上書きしてしまう・・・というところは、saveの使い方を見直す必要がありそうです。 コードを見る限りは読むファイルと同じ名前でsaveしてしまっています。 汎用性を考えると、datetimeで時間を作ったほうが楽だと思います。 c...

5 years ago | 0

| accepted

Answered
動画ファイル(MP4)をuitab上に非同期で表示する方法
逐次処理でコードが実行されるので、非同期実行は基本的に難しいです。 回答になるかどうかわかりませんが、parevalによる <https://jp.mathworks.com/help/distcomp/asynchronous-parallel-p...

5 years ago | 0

Answered
Aerospace Blocksetを含むSimulink モデルのexe形式への変換について
有料モデルというのがよくわかりませんが、Simulink Coderでコード生成可能なブロックについては、 Help - Simulink - Block Data Types & Code Generation Support で確認する...

5 years ago | 1

| accepted

Answered
guidataの使用について
“うまくいかなかった”ときは、“どのようなエラーがでたのか”の情報があったほうが回答が得やすくなるかと思います。 guidata関数のドキュメンテーションをまずはよくご確認ください。 https://jp.mathworks.com/help/...

5 years ago | 0

| accepted

Answered
csvデータを使って畳み込みニューラルネットワーク(cnn)で処理したい
imds = imageDatastore('gg.csv','ReadFcn',@csvread,'FileExtensions','.csv'); としてimdsのReadFcnにMATLAB標準関数のcsvreadを設定したあとに、 ...

5 years ago | 0

| accepted

Answered
画像の読み取りと輝度値の分散について
画像の雰囲気からすると、Siチップにレーザー系のツールで線加工をしたものでしょうか。 画像の汚れからすると、光学顕微鏡を使って観察をしたように見えます。 私の予想が当たっている場合は、対物レンズ専用の用紙と洗浄液で掃除してあげてください。 もし、走査...

5 years ago | 1

| accepted

Answered
csv fileを読み込めない
See: <https://jp.mathworks.com/matlabcentral/answers/309720-tutorial-matlab-answers チュートリアル: MATLAB の Answersで早く的確な回答を得るためのポイント>...

5 years ago | 1

| accepted

Answered
matlab強制終了のエラー対応の件
読み取れる情報からは二つの可能性が考えられます。 # リモートデスクトップ環境:MATLABはリモートデスクトップ環境での使用を想定していません # Window 7をClassicテーマで使用している:デフォルトのテーマに戻してお使いください ...

5 years ago | 1

| accepted

Load more