Community Profile

photo

s


Last seen: 8 dagen ago Active since 2020

Statistics

All
  • Thankful Level 3
  • Solver

View badges

Content Feed

View by

Question


appdesignerでyyaxisをrightに設定した時のy軸メモリのリセット方法
appdesignerでaxisをleftとrightでそれぞれ設定し、yyaxisがrightの時、元々プロットしてあったlineを削除し、新しくplotするとき、Y軸メモリ間隔がリセットされません。Y軸メモリをリセットする方法を教えてください。 ...

5 maanden ago | 0 answers | 0

0

answers

Question


appdesignerで操作画面を拡大した時の拡大倍率について
①appdesingerで編集中でキャンパス画面上では、等間隔でサイズが同じでも、「実行」ボタンを押してアプリを立ち上げて、画面を拡大すると全体的なバランスが大きく崩れます。どうすれば上手く調整できるでしょうか。 キャンパス画面上 「実行」ボタンを...

5 maanden ago | 1 answer | 0

1

answer

Question


「nchoosek」関数で、配列番号を取得する方法
matlabでは組み合わせとして、「nchoosek」関数があります。 以下のような場合、解決する方法があれば、教えていただけると幸いです。 例えば、以下のような同じ配列数の変数「A」と「B」があるとします。 A = [3 4 5 6]; B = ...

8 maanden ago | 1 answer | 0

1

answer

Question


Report Generator で作成したpdfファイルを特定のパスで指定したフォルダに保存する方法
Matlabの「Report Generator」で作成したpdfファイルをMatlabで現在開いているフォルダでなく、 指定したパスのフォルダ内に保存したいです。 「Report Generator」を使ったことがなく、初心者で以下の公式ページを参考...

11 maanden ago | 1 answer | 0

1

answer

Question


timetable型のデータで年を除く、月日のみの傾向を可視化する方法
timetable型のデータで時系列に年月日のdatetime型のデータとあるデータがあるとします。 dt1_2016 = datetime("2016-04-24"); data1 =2; dt2_2016 = datetime("2016-05-2...

12 maanden ago | 1 answer | 0

1

answer

Question


tableデータの変数名を割り当てる方法
table型において、変数名を明示的に宣言せずに、割り当てて、table型の変数を作成する方法を教えていただきたいです。 x1 = 100; x2 = 200; table( x1, evalin( 'base' , "x2" ) ) この状態...

ongeveer een jaar ago | 1 answer | 0

1

answer

Question


アップルシリコンの対応
アップル社のアップルシリコンにネイティブ対応するのは、いつ頃でしょうか。

ongeveer een jaar ago | 1 answer | 0

1

answer

Question


MATLAB が回らなくなった時の対処法
matlab が回らなくなりました。対処法を教えてください。 アップデートに失敗して、動かなくなりました。

ongeveer 2 jaar ago | 0 answers | 0

0

answers

Question


asuumptions関数の出力表示の簡略化方法について
assumptionsで変数の仮定を出力するとき、条件が重複している場合、 出力表示を簡略化する方法はありますでしょうか。 例えば、以下の場合。 clear all;clc;close all; syms x assume(x,'posit...

meer dan 2 jaar ago | 0 answers | 1

0

answers

Question


matlabの追加ライセンスについて
matlab で三つソフトがほしくて、購入すると、2台までインストールできますが、 三台目にインストールするときは、追加で買う必要があると思います。 そのさい、同じmathworks のアカウントで追加購入することはできますか。 それとも、またアカウ...

meer dan 2 jaar ago | 1 answer | 0

1

answer

Question


solve関数で簡単な数式を解く方法
solve関数を使って 2a + 3b = 0 という方程式をa/bについて解きたいです。 つまり a/b = -(3/2) の形にしたいです。 以下が、matlab コードです。 clear; clc; close all; syms a...

meer dan 2 jaar ago | 1 answer | 0

1

answer

Question


figの中のplotしたグラフのプロパティインスペクターの選択方法
figureの中のplotした線をプロパティインスペクターで選択して編集したいのですが、線が他の線とaxis内で完全一致しており マウスで選択しても一番上にplotされたグラフが選択されます。 plotした時に変数に入れて置き、コード上でプロパティを変...

bijna 3 jaar ago | 1 answer | 0

1

answer

Question


MATLAB homeライセンスの保守の料金
MATLABのhomeライセンスの保守料金って一年間何円ですか?また、保守料金はtoolboxについても払わないといけないんですか?

ongeveer 3 jaar ago | 1 answer | 0

1

answer

Solved


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 ...

ongeveer 3 jaar ago

Question


figureの背景をsaveas関数で透明で保存する方法
matlab で作ったfigureの背景を透明の状態で保存する方法を教えてほしいです。 作ったfigureとaxes のプロパティを透明にしても保存すると背景が白になってしまいます。 例を示します。 plot(1:10) fig=gcf; fig...

ongeveer 3 jaar ago | 1 answer | 0

1

answer

Question


table 関数で型を指定して読み込む方法
Excelからtable関数を用いてデータを抽出する時に、数字であればdouble型で自動的に読み込むのですが、これをchair型で読み込ませる方法はありますでしょうか。 もしくは、table型内でdoubleで入った数値をchair型に変更する方法はあ...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


forループ内でループ変数を用いて、異なる変数に値を代入する方法
for ループ内で変数の名前を変え、その、それぞれの変数に値を代入する方法を教えてほしいです。 例えば for i=1:10 data〇=i end のように、〇の部分をループ変数 ' i ' を用いて、data1 , data2 , d...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


空行列の作成の利点
よく参考書などで、事前割り当てなどをmatlabでは推奨していますが、変数に空の行列を事前割り当てしている参考書をよく見るのですが、これは一体なんのために割り当てているのでしょうか。

meer dan 3 jaar ago | 1 answer | 0

1

answer

Solved


Add two numbers
Given a and b, return the sum a+b in c.

meer dan 3 jaar ago

Solved


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x₁_ + _x₂_ = 2 _x₁...

bijna 4 jaar ago

Solved


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...

bijna 4 jaar ago

Solved


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...

bijna 4 jaar ago

Solved


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...

bijna 4 jaar ago

Solved


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:...

bijna 4 jaar ago