Channel


test for twitter bot

9 years ago

Answered
Buenos Días soy de la ESPE nosotros contamos con 50 licencias pero actualmente estamos trabajando en dos campus quiero saber si puedo instalar en otro servidor el control de licencias para el otro campus
Porque esta es el caso universitato, depende el medio del campus (por ejemplo, "dos campus" es uno/dos universitades) y depende ...

9 years ago | 1

| accepted

Answered
uitableで指定のセルを表示する方法
uitable の機能には 選択しているかしていないかが分かるプロパティがないため、カーソルを動かすことができません。 代わりに、該当するセルの文字をハイライトするのではいかがでしょうか。 <</matlabcentral/answers/up...

9 years ago | 3

| accepted

Answered
グラフ内のピークの検出
ピーク値の数を定めるには 'NPeaks' オプションを使用します。 また、ピーク値をソートするには 'SortStr' オプションを使用します。 これらオプションについては、 <https://jp.mathworks.com/help/re...

9 years ago | 2

| accepted

Answered
naive bayes for mail spam
Google Naive Bayes and MATLAB; then, you will find out that <https://jp.mathworks.com/help/stats/fitcnb.html fitcnb> (fit + clas...

9 years ago | 0

Answered
In Neural Network Toolbox, how can I can change the values of training Parameters ?
How about using >> net = patternnet(hiddenLayerSize, trainFcn); instead of >> net = patternnet(hiddenLayerSize);

9 years ago | 1

Answered
How to convert excel data in to html by means of matlab?
1. Importing data in an Excel file Use importtool to import data in an Excel file. See the video if you do not know importt...

9 years ago | 0

Answered
In Neural Network Toolbox, how can I can change the values of training Parameters ?
You cannot customize a lot with App. If you want to train not with default values, change values/parameters on code. After t...

9 years ago | 1

| accepted

Answered
Sending an email via Matlab, how do I fix an 'Authentication failed' error?
Check the following two things: 1. Change the variable host as host = 'smtp.gmail.com'; 2. Turn on less secure apps ...

9 years ago | 2

| accepted

Answered
MATLAB report from a standalone application.
Publish command is not supported in MATLAB Compiler, listed here: <http://jp.mathworks.com/help/compiler/unsupported-functions....

9 years ago | 1

Answered
How can I change the color of a region with specific value in contourf plot?
Since Z in this example contains many decimal points, getting index with abs_Z < 0.001 instead of abs_Z = 0. To make the cer...

9 years ago | 0

Answered
How I can change language in Matlab 2016b?
Unfortunately, Russian is not supported in MATLAB. (Only Japanese, some part of Korean and Chinese are supported.)

9 years ago | 1

Answered
Guardar y cargar una red nueronal entrenda
Usas >> save('net.mat', 'net') en lugar de >> save('net') El argumento segundo es el variable que quieres guarda...

9 years ago | 0

| accepted

Answered
cambio de PC, re instalación de licencia Trial
Reinstala o llama a la asistencia para la instalacion en tu pais.

9 years ago | 0

Answered
¿como puedo hacer para multiplicar matrices de cualquie dimension en el guide?
Tu pregunta esta diviendo es tres partes: # Multiplicado matrices de cualquier dimension # Escribirlo en GUIDE # Mostrado ...

9 years ago | 0

Answered
¿Como hacer tablas con valores contantes ?
Haciendo tables con valores constates, matrices A y B: A = [1 2 3]'; % vector vertical B = [4 5 6]'; % otro vector...

9 years ago | 0

Answered
Can anyone share m.file for inset zooming of figure with multiple subplots?
If you meant that you want to zoom not only one subplot but all subplots, linking all axes with LINKAXES would do. figure; ...

9 years ago | 0

Answered
MATLABからIEを操作し、HTMLを開きMHT形式で保存する。
IE を開いた上でページを保存する方法と、開かずに保存する方法をそれぞれ紹介します。 1. COM の ExecWB の機能を使用して、保存のポップアップを表示することができます。 url = 'google.co.jp'; ie =...

9 years ago | 1

| accepted

Answered
複数データのExcelファイルへの書き込み
for ループの中で >> class(dataname) を実行すると char (文字列)型であることがわかります。 そのため、XLSWRITE 関数を実行した際に文字列がそのまま書き込まれてしまいます。これを元の型で使用するには ...

9 years ago | 2

| accepted

Answered
parforでモデルを並列処理するときに、モデルのパラメータが初期化されない方法はありますか?
新規で作成されたワークスペース上には変数がないため、モデルのパラメータを変数名にしていると エラーが出ると考えているのですが、この認識で合っていますか? はい,理解されているとおりです. また、この問題を解決するために、モデルのパ...

9 years ago | 3

| accepted

Answered
散布図の重ね合わせ
この原因は同じファイルを読み込まれているため,x1y1, x2y2, x3y3の組み合わせが変更されていないためです. コードの7-8, 11-12行目をご覧ください.load コマンドでx1filename, y1filename を読み込まれてい...

9 years ago | 1

| accepted

Answered
GUIDEで作成したGUI 上から、読込み用のファイルを選択した上で、mファイルを実行させるにはどうすればいいですか?
1. 以下のコマンドで GUI を作成するための GUI ツール (GUIDE) を起動します。 >> guide 2. レイアウト画面でレイアウトを作成し、名前をつけて保存します。 添付の例では、 *リストボックス* 、 *プッシュボタ...

9 years ago | 4

| accepted

Answered
choosing AMD Radeon R5 M430 is suitable for matlab
AMD GPU is not supported. If you want to use GPU for your computation, use NVIDIA GPU with Compute Capability 2.0 or above. Pl...

9 years ago | 1

Answered
Undefined function 'imageDataStore' for input arguments of type 'cell'.
imageDataStore is introduced in R2016a. If you are using R2015b or before, you cannot use it and you get the result like "undefi...

9 years ago | 1

| accepted

Answered
Can we use multisvm to classify more than 2 groups
The answer is YES. There is a function "fitcecoc" in Statistics and Machine Learning Toolbox. As you know, originally SVM is a b...

9 years ago | 1

Answered
how to work with genetic algorithm toolbox in matlab
Global Optimization Toolbox includes GA. The following page and video will help you understand what is it and how to use: h...

9 years ago | 1

| accepted

Answered
Can I get a 'axes' handle for the Matlab Web browser?
You can get a handle with the following code, but since web browser is not an "axis," you cannot get an "axes" handle. url ...

9 years ago | 1

Answered
How to change font size of clustergram ColumnLabels?
There was a similar question. Please set the ShowHiddenHandles property as 'on' and change the FontSize property. https://jp...

9 years ago | 1

Answered
Reduce font size of column labels in clustergram
The FontSize property in clustergram is hidden, so, set the ShowHiddenHandles property as 'on' so that you can see the hidden pr...

9 years ago | 2

Answered
Matlab Example Demo Download デモのスクリプトのダウンロード
大学のライセンスでインストールされた R2010b ではこのデモはまだ導入されていないため、このようなエラーが出ています。このドキュメントが導入されたバージョンについては不明なのですが、少なくとも R2014b では確認することができました。 最近リ...

9 years ago | 3

| accepted

Load more