Jess Lovering
Followers: 0 Following: 0
統計
MATLAB Answers
0 質問
15 回答
ランク
of 154,105
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Plot inside a function
In the code it looks like you have the plot within your for loop. You need an additional end before the plot line. Does that f...
Plot inside a function
In the code it looks like you have the plot within your for loop. You need an additional end before the plot line. Does that f...
約5年 前 | 1
| 採用済み
回答済み
How to increase alphanumeric (i.e. NACA0012, NACA0013, NACA0014 etc)
You can loop through each value like this: for ii = 1:10 str = ['NACA' num2str(ii,'%04i')] disp(str) end Is that what you ...
How to increase alphanumeric (i.e. NACA0012, NACA0013, NACA0014 etc)
You can loop through each value like this: for ii = 1:10 str = ['NACA' num2str(ii,'%04i')] disp(str) end Is that what you ...
約5年 前 | 0
回答済み
Centering annotation over subplot?
You could try to use text instead and use the x and y limits instead of the axis position, see below: text((max(hLF1.XLim)-min(...
Centering annotation over subplot?
You could try to use text instead and use the x and y limits instead of the axis position, see below: text((max(hLF1.XLim)-min(...
約5年 前 | 0
| 採用済み
回答済み
I am working on homework. I am to prompt user for temperature in Celsius and then ask them to choose if they want it converted to F or C. I have this so far. It promted user for temp in C and converted to F before I started to add a while loop,
You could use the question dialogue box, see the example below. You could first prompt for the temperature number and then ask ...
I am working on homework. I am to prompt user for temperature in Celsius and then ask them to choose if they want it converted to F or C. I have this so far. It promted user for temp in C and converted to F before I started to add a while loop,
You could use the question dialogue box, see the example below. You could first prompt for the temperature number and then ask ...
約5年 前 | 0
| 採用済み
回答済み
Plotting variable from NetCDF file
I noticed there is a comment note on this line about reversing the arrays: [lonG, latG] = ndgrid(lon, lat); %you might have to...
Plotting variable from NetCDF file
I noticed there is a comment note on this line about reversing the arrays: [lonG, latG] = ndgrid(lon, lat); %you might have to...
約5年 前 | 0
| 採用済み
回答済み
Finding Y vector using a given X vector and a equation
You have to define your vector and then pass it into your equaiton but make sure to use .^ instead of ^ so that it goes element-...
Finding Y vector using a given X vector and a equation
You have to define your vector and then pass it into your equaiton but make sure to use .^ instead of ^ so that it goes element-...
約5年 前 | 0
回答済み
Why am I getting an error trying to sort this array?
Are you using the variable name "sort" in another part of your code? This has happened to me in the past if I define a variable...
Why am I getting an error trying to sort this array?
Are you using the variable name "sort" in another part of your code? This has happened to me in the past if I define a variable...
約5年 前 | 0
回答済み
How do I use a for loop on ever element in an array?
I think that the below code is what you are asking about. Your if requirements seem like they may be off, however, so I changed...
How do I use a for loop on ever element in an array?
I think that the below code is what you are asking about. Your if requirements seem like they may be off, however, so I changed...
約5年 前 | 1
| 採用済み
回答済み
Using a colormap to match a contour to a histogram
Here is an example of what I think you are trying to do. It doesn't calculate the bar values for the contours - I assume you ha...
Using a colormap to match a contour to a histogram
Here is an example of what I think you are trying to do. It doesn't calculate the bar values for the contours - I assume you ha...
約5年 前 | 0
回答済み
limit range of loop iteration
Do you mean that you want your loop to go through i = 0 to 47 and then 313 to 360? If that is what you want then you can just r...
limit range of loop iteration
Do you mean that you want your loop to go through i = 0 to 47 and then 313 to 360? If that is what you want then you can just r...
約5年 前 | 0
| 採用済み
回答済み
How to change color bar? how to keep initial abscisses values?
You can add this line at the end and see if that works: xticklabels(x);
How to change color bar? how to keep initial abscisses values?
You can add this line at the end and see if that works: xticklabels(x);
約5年 前 | 0
回答済み
How to change color bar? how to keep initial abscisses values?
To make sure I understand your intention - you want the colors to stay red, green, and blue and not default to the standard colo...
How to change color bar? how to keep initial abscisses values?
To make sure I understand your intention - you want the colors to stay red, green, and blue and not default to the standard colo...
約5年 前 | 1
| 採用済み
回答済み
How to have a variable format spec print length when using fprintf?
Would this work for what you need? MaxHeaderLength = max(cell2mat(columnheaderlength)); max_fmt_spec = ['%' num2str(MaxHeaderL...
How to have a variable format spec print length when using fprintf?
Would this work for what you need? MaxHeaderLength = max(cell2mat(columnheaderlength)); max_fmt_spec = ['%' num2str(MaxHeaderL...
5年以上 前 | 0
| 採用済み
回答済み
How to use curl for 2D-vector field correctly?
I think you might have to make those inputs into matrix format first with meshgrid. Then you can pass those directly into curl....
How to use curl for 2D-vector field correctly?
I think you might have to make those inputs into matrix format first with meshgrid. Then you can pass those directly into curl....
5年以上 前 | 0
回答済み
Plot time in format 00:00:00
Have you tried to use the duration function? plot(duration({'00:02:37.96469', '00:02:38.93659'}), [1 1], 'bx')
Plot time in format 00:00:00
Have you tried to use the duration function? plot(duration({'00:02:37.96469', '00:02:38.93659'}), [1 1], 'bx')
5年以上 前 | 0