photo

Aashray


Last seen: 約1ヶ月 前 2025 年からアクティブ

Followers: 1   Following: 1

Spoken Languages:
English

統計

MATLAB Answers

0 質問
54 回答

ランク
2,865
of 300,379

評判
20

コントリビューション
0 質問
54 回答

回答採用率
0.00%

獲得投票数
5

ランク
 of 20,931

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 168,299

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Knowledgeable Level 1
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
How can I see the graph starting 0.02s in the scope every time?
Hi @Mohammad Ali Siddique, I understand you want the Simulink Scope to always display only the interval from 0.02 s to 0.08 s,...

2ヶ月 前 | 0

回答済み
How can I edit x label so it doesn't overlap each other?
Hi @Mevlana Jalaluddin Rumi! I understand that you are plotting a bar chart where the x-axis labels (route names) are quite lo...

2ヶ月 前 | 0

回答済み
Need to convert graphs (.fig format) into .csv format
Hi @Anwesha Chakraborty, You can extract the numeric data from a “.fig” file by reopening it in MATLAB, finding the line objec...

2ヶ月 前 | 0

回答済み
How do I plot two variables on the same graph in matcont?
Hi @Patric Boardman! Yes, you have rightly noticed, in the ‘MatCont’ GUI the plotting is limited to showing one variable at a ...

2ヶ月 前 | 0

回答済み
Multiple drop down menus plotted on same graph.
Hi @steve geddes, If you want to display two functions on the same axes and let each function be controlled by its own dropdown...

2ヶ月 前 | 0

回答済み
produce a code for GUI
Hi @Lim Xiao Hui, If you just need a quick way for the user to enter three numbers for y and then plot against the fixed x = [...

2ヶ月 前 | 0

回答済み
Copy/save image functions stop UIAxes graph from automatically resizing
Hello @Derek Wolfe! Luckily, I have R2021a installed in my old laptop and so I was able to reproduce the issue. Initially I saw...

2ヶ月 前 | 1

| 採用済み

回答済み
Editing variable through graph
Hi @MoHizzel! I understand that you want to edit the contents of a variable x by dragging its plotted points so that the corre...

2ヶ月 前 | 0

回答済み
only the first of the three subplots shows eveything including the points, grid, axis labels, and legend. The last two subplots only show the trend line and none of the extra features
Hi Jacob Cole, In the first subplot, you explicitly did a hold on, so MATLAB kept all the plotted objects (quarter, half, full,...

2ヶ月 前 | 0

回答済み
Tables and Graphs Display
Hello @Thore! The original implementation had several separate figure windows for histograms, control chart, and tables, each ...

2ヶ月 前 | 0

| 採用済み

回答済み
Euler method error and step size code
Hello @Priyadarshini Challa, I understand that you are trying to visualize how the error behaves with respect to the step siz...

4ヶ月 前 | 0

回答済み
Out of memory. Type "help memory" for your options.
Hello @Muhammad Ezree Amree bin Amran, The "Out of Memory" error in this case doesn't mean your computer ran out of RAM. It hap...

4ヶ月 前 | 0

回答済み
Forward Euler oscillations in plot
Hello @Arkajyoti Chaterjee, The oscillations in the plot are due to the stiffness of the ODE. The Forward (Explicit) Euler met...

4ヶ月 前 | 0

回答済み
Plotting Bisection intervals code
Hello @gracias claude, I understand that you have implemented the bisection interval method for finding approximate roots. And...

4ヶ月 前 | 2

回答済み
How to increase the space between the title of each graph and the graph in a tiled layout?
Hello @Wolfgang McCormack! I really like that you want to know the specifics of plotting multiple graphs within a single tile...

4ヶ月 前 | 0

回答済み
How can I draw the graph for this system of linear equation in MATLAB?
Hi @PULAK Kumer! I understand that you are trying to visualize the solution of a system of linear equations using matrices A an...

4ヶ月 前 | 0

回答済み
What can I add in this code for me to plot the data that I obtained in real time graph?
Hello @WAN NOR NAZIRA MUSTAPA KAMAL, If you would like to visualize the accelerometer data from your “i2c_sensor()” function in...

4ヶ月 前 | 0

回答済み
Anyone help me, how can I change this code for me to plot the graph from the data obtained?
Hello @WAN NOR NAZIRA MUSTAPA KAMAL, If you would like to plot the accelerometer data obtained in your “i2c_sensor()” functio...

4ヶ月 前 | 0

回答済み
Can I run experiments with Matlab Web App?
Hi @San Mac, Yes, it is possible to use the MATLAB Web App Server to collect data for a behavioral experiment like in your case...

4ヶ月 前 | 1

回答済み
How to display a graph from a specific time in Simulink?
Hi @BBBC, I faced a similar issue once, and after some experimentation, I found that we can use Enabled Subsystem. Here is how ...

4ヶ月 前 | 0

回答済み
Trying to write a function using step uni function and ramp function (elementary functions)
Hello @Fatima Noneed, From the code, I understand that you are trying to build a piecewise function using ramp and unit step fu...

4ヶ月 前 | 0

回答済み
same code giving different output on two different versions of matlab in the same system
Hello @Iqra Akhtar, I tried to reproduce the issue, as I was facing similar behaviour. I found that in MATLAB R2014a, the code ...

4ヶ月 前 | 0

回答済み
Calculating different levels of confidence and drawing the corresponding graph
Hi @amin zarif, For calculating and visualizing the confidence intervals in a plot, you can do the following: Calculate the me...

4ヶ月 前 | 0

回答済み
plotting visual stimulus on timeseries graph?
Hi @nines, I understand that you want to mark specific onset times (shifted by 32 seconds) with short horizontal lines at the t...

4ヶ月 前 | 0

回答済み
Plot how would I take my out put C(2) and plot it vs Al (Alpha) This newtons method works to get Ca2 and CA1, but I want to bang CA2 vs Alpha for alpha 0-1. Do I use a matrix?
Hello Victor! I understand that you have implemented Newton’s method to solve for two concentrations, CA1 and CA2, with a depen...

4ヶ月 前 | 0

回答済み
Fourier Series Signal Codes
Hello Mr. Santa I went through the shared code and suggest the following changes: Define a sawtooth-like waveform, where x(t...

5ヶ月 前 | 0

回答済み
Fourier Series Signal in Cosine Form and Exponential Form
Hello @Black Santa! I went through the code that you have shared, and suggest the following changes: Use proper expression for...

5ヶ月 前 | 0

回答済み
Equalizing edge lengths in simple graphs
Hello @Maxwell Day! This is a really interesting problem, since it involves moving beyond the usual topological representation ...

5ヶ月 前 | 0

回答済み
Modeling a SIR model on a LxL lattice
Hi @Raazi, I like the fact that you are moving from traditional SIR model for a more spatially realistic simulation of disease ...

5ヶ月 前 | 0

回答済み
Hi, may i know if this graph is overfitting or not?
Hello @Jester Cuerdo, I went through the training progress plots you have shared. It doesn’t look like your model is overfittin...

5ヶ月 前 | 0

さらに読み込む