photo

Aoi Midori


Last seen: 7개월 전 2018년부터 활동

Followers: 0   Following: 0

통계학

  • Thankful Level 2
  • Knowledgeable Level 3
  • Revival Level 1
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
I am looking for the way to display the video on graph!
I am not 100% sure what you meant by graph, but I could get a similar result with the code below. The attached file is the outpu...

거의 3년 전 | 3

답변 있음
Reading an image from multiple folders
Does this example help you? It uses imageDatastore. https://www.mathworks.com/help/deeplearning/ug/extract-image-features-using...

3년 초과 전 | 0

답변 있음
How can I extract a pretrained LSTM algorithm in matlab?
How about using MATLAB Coder? https://www.mathworks.com/help/coder/ug/workflow-for-deep-learning-code-generation-with-matlab-co...

3년 초과 전 | 0

| 수락됨

답변 있음
Matlab mobile for iOS で Matlabにストリームできない。
公式ではなさそうですが、下記のツールはいかがでしょうか? https://github.com/aa3025/matlab_sensors

거의 4년 전 | 2

| 수락됨

답변 있음
How to Convert 3d matrix to row matrix???
A = rand(10,10,10); B = reshape(A,[1,1000]);

4년 초과 전 | 1

| 수락됨

답변 있음
How to auto change save file name with For loop
Do you mean this? result(k) = output

4년 초과 전 | 0

질문


How to convert this to the filled 2-D contour plot?
I would like to convert the figure below to the one like the filled 2-D contour plot, but don't know how. This figure is create...

대략 5년 전 | 답변 수: 1 | 0

1

답변

질문


How to Customize Sigma in subexpr()?
Let's say we have a formula below syms k1 k2 eqn2 = (k1+k2+1)^2+(k1+k2+1)+1; and put 'eqn2' into subexpr() function, [EQN2, ...

5년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Is there any way to increase the radius of a circular formatted directed graph?
I did not entirely see what you precisely meant by "increase the radius" but here I offer you an example of changing the propert...

5년 초과 전 | 1

| 수락됨

답변 있음
Index exceeds the number of array elements (1) error
I assumed that you wanted to write in LINE 59 as: w3(k)=vel(1);w5(k)=vel(2);w6(k)=vel(3);vt(k)=vel(4); where it's not w6=vel(3...

5년 초과 전 | 2

| 수락됨

답변 있음
Simulinkで得たscopeのデータをExcelに書き込む方法は?
Simulink上で"To Workspace"に枝分かれさせてみてはいかがでしょうか? そうすることで、(デフォルトでは)MATLABのワークスペース上に"simout"という変数ができ、その中に時間情報やデータなどが入っています。excelに波形...

5년 초과 전 | 3

| 수락됨

답변 있음
任意の行に戻る方法
Takaki Fujiiさん、 for文下部の、以下の2行を消すことで、for文の機能によりj=83になった時に計算終了されないでしょうか? goto 11%Cg=dlmread(['Cg_',num2str(date_next),'.txt'],''...

5년 초과 전 | 2

| 수락됨

답변 있음
how do you graph z=sqrt(9-r^2cos^2(theta))?
z = 3 when r = 0: [r]=meshgrid(0:0.1:6.28); [theta]=meshgrid(0:0.1:2*pi); z = abs( sqrt( 9 - (r.^2 .* cos(theta').^2 ) ) ); ...

5년 초과 전 | 0

답변 있음
fminsearchを用いて定積分の式に含まれる未知数を最適化する方法はありますか?
無名関数で記述するには内容が長いので、fun.m(添付)のように別ファイルで関数を記述し、以下の要領でサーチしてはいかがでしょうか? x0 = [1,2]; x = fminsearch(@fun,x0);

5년 초과 전 | 3

| 수락됨

답변 있음
タイマーコールバック内でプロット先指定をするためにはどうすればよいですか?
Yoshiharu Soetaさん、 無事に解決されたようでよかったです。では、回答としてこちらに記載しておきます。 function update_display(hObject, eventdata, handles) % 略 y_tmp = ...

5년 초과 전 | 1

| 수락됨

답변 있음
How do I plot x^2+z^2=9 above the xy plane and between y=-1 and y=2?
How about: syms x y z; [x,y]=meshgrid(-10:1:10); z = abs(sqrt(9-x.^2)); surf(x,y,z); ylim([-1 2])

5년 초과 전 | 0

| 수락됨

답변 있음
Can any one please tell why I am not getting the proper plot?
I assume that the x axis 1-9 shows the number of column. How about: plot(X,Y,'+');

5년 초과 전 | 2

| 수락됨

답변 있음
Indexing a variable value
Do you want to calculate the density values using the function DensityData() or do you already have the density values calculate...

5년 초과 전 | 0