A Poyser - MATLAB Central
photo

A Poyser


Last seen: 5日 前 2022 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 10/22 to 03/25Use left and right arrows to move selectionFrom 10/22Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

27 質問
2 回答

ランク
214,052
of 297,457

評判
0

コントリビューション
27 質問
2 回答

回答採用率
100.0%

獲得投票数
1

ランク
 of 20,438

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 158,938

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Thankful Level 4

バッジを表示

Feeds

表示方法

回答済み
I am trying to use plotyy to specify the axes on a graph but I am struggling to figure out how to use it
Here is how I solved it %% Set up the Import Options and import the data opts = spreadsheetImportOptions("NumVariables", 5); ...

8日 前 | 0

| 採用済み

質問


I am trying to use plotyy to specify the axes on a graph but I am struggling to figure out how to use it
I am plotting a graph that uses semilog and plot and I want to specify the left and right axes as they use different units. %% ...

11日 前 | 1 件の回答 | 0

1

回答

質問


finding an area under a graph
I want to know the area under a graph. % opts = spreadsheetImportOptions("NumVariables", 5); % Specify sheet and range op...

13日 前 | 1 件の回答 | 0

1

回答

回答済み
I am trying to recreate a plot from a literature review. It is a scatter graph but the axis are labels more than specific numbers
This is how I did it % Define machining methods and their left y-axis values methods = {'Laser', 'EDM', 'Mechanical', 'WaterJe...

28日 前 | 0

| 採用済み

質問


I am trying to recreate a plot from a literature review. It is a scatter graph but the axis are labels more than specific numbers
I want to recreate this graph. I have used web plotter to extract all the data but defining the axes and the number of subcatago...

29日 前 | 2 件の回答 | 0

2

回答

質問


I have some code that keeps failing to open and read two csv files out of four. Can someone explain what is wrong with either the code or the csv files
I have a piece of code that plots force extension, stress strain and then the average stress strain of four csv files. I have us...

7ヶ月 前 | 2 件の回答 | 0

2

回答

質問


I want to add two histograms with error bars to a piece of code I already have that is generating two plots
I have a piece of code that is currently calculating stress/strain and force/extension. It groups them into catagories based on...

7ヶ月 前 | 1 件の回答 | 0

1

回答

質問


how to specify numbers in an array with varying steps
I want to specify the a group of numbers in an array but they do not appear in even steps. I want to capture N1 (1 and 12), N2...

9ヶ月 前 | 2 件の回答 | 0

2

回答

質問


I have a function that adds a legend I want to make the legend group certain plots together yet so that instead of a legend with 14 entries there is a legend with 5 entries
I have managed to make a code that automates the plotting of data but I would like the code to group the plots into disticnt gro...

9ヶ月 前 | 2 件の回答 | 0

2

回答

質問


setting axes to a specific colour
I am trying to make a graph where all of the axes are black however the right y axes keeps being an uncontrolled colour % % ...

約1年 前 | 1 件の回答 | 0

1

回答

質問


Badly conditioned equations - how can I centre and scale properly
After writing my own best fit line. I can see that the results are pretty great, however the equation is apparantly badly scaled...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


How can I better control bestfit lines
I have a piece of code that generates a best fit line alongside error bars. As well as a best fit for a scatter graph. I am try...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


How to replicate a graph from some data collected using webplot digitiser
I have two .csv files I made from webplot digitiser and I want to replicate this graph the csv files are called 'Strength_Mpa' ...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


converting matlab into python using an official matlab add on
I have a bunch of code I want to to turn from matlab to python, while at the same time refactoring. Are there official add-ons ...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


I have a code that I would like to modify to plot multiple items all together
I have this code % Matrix properties (Al2O3) Em = 380E3; % Young's modulus num = 0.22; % Poisson's ratio Vv_vals = [0.01, 0....

2年弱 前 | 1 件の回答 | 0

1

回答

質問


Silly question about 2 column matrix
It is my understanding that a = [1 3 5; 2 4 6; 7 8 10] yet AL01-SIGMA09 = [1183.885678 512.1; 568.8329716 ...

2年弱 前 | 2 件の回答 | 0

2

回答

質問


how do I turn a piece of code into a parametric optimisation
I have a piece of code that I would like to turn into a parametric optimisation clear close all % % Matrix properties (8552 ...

2年弱 前 | 1 件の回答 | 0

1

回答

質問


trying to multiply and divide different size matices
I am trying to make sense of this line cdp = cdp_initial + cdp_increment * (sigma_range / KIc) * N_cycles; However, the matri...

2年弱 前 | 1 件の回答 | 0

1

回答

質問


I am having issues concatenating arrays
I have a piece of code that I am trying to concatinate some arrays. I am being told that they are not consistent, and that vertc...

2年弱 前 | 1 件の回答 | 0

1

回答

質問


Plotting funtion scalar, or character error
I have a piece of code that labels a graph using the function below. ylabel('$\Gamma_I, \; R_{IC}$ (MJ/m^3)','FontSize',32,'Int...

2年弱 前 | 1 件の回答 | 0

1

回答

質問


recording a plot as a video & including a suitable legend
I have a plot that is drawing itself as it is being calculated. I would like to record it as the speed it is being calculated. I...

2年弱 前 | 2 件の回答 | 0

2

回答

質問


forcing the final column in a matrix to be zero
I want to make the final column to go to zero once I go past a certain flag number k = 10 a = zeros(1:k) if b < 1 a = ...

2年弱 前 | 1 件の回答 | 0

1

回答

質問


I want to create an if loop inside multiple if loops that are already present
I want to stop a piece of code once a certain variable goes past a certain number. I am not sure exactly where to put it but es...

2年弱 前 | 1 件の回答 | 0

1

回答

質問


finding the lines of code that are being printed to command line
I have a repository of code that works very well, but I am in the process of refactoring it. One of the problems is that it is ...

2年弱 前 | 1 件の回答 | 1

1

回答

質問


Preallocating an array or a vector in matlab before a for loop
I have several variables that I want to preallocate in my code before my for loop. I was hoping someone could show me the correc...

約2年 前 | 2 件の回答 | 0

2

回答

質問


I have multiple spread sheets with multiple sheets that I want to write an indexing data import function for
I am trying to plot graphs from three spreadsheets. Each spreadsheet is made up of multiple sheets of varying length, all that a...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


I would like to use matlab to add information from a .dat file to existing MatLab variables
I have a simulation that outputs a report in the .dat file format. I would like a piece of code that can use two line near the t...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


generate 3d periodic geometry matlab
I would like to generate three dimensional periodoc images for academic pappers. One such image would be randomoly placed elipse...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


Index exceeds the number of array elements. Index must not exceed 1.
This line of code is giving me the above error message T = k^2 * Em(k) * (((k^2 - mean_nu) * E(k) + mean_nu *crack_aspect_ratio...

2年以上 前 | 1 件の回答 | 0

1

回答