Ayush Kumar Jaiswal
Followers: 0 Following: 0
統計
MATLAB Answers
0 質問
12 回答
ランク
of 153,872
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Cannot find variable with ncread
You are using different file name to retrieve contents. It should instead be: tau = ncread('Marconi_v02_map_5years.nc','mesh2d_...
Cannot find variable with ncread
You are using different file name to retrieve contents. It should instead be: tau = ncread('Marconi_v02_map_5years.nc','mesh2d_...
2年以上 前 | 0
回答済み
Is it possible to program the mouse cursor selection box on figures in MATLAB?
I think here is what you need: function dragpoints(xData,yData,xLower,xUpper,yLower,yUpper) figure; x = xData; y = yData; ...
Is it possible to program the mouse cursor selection box on figures in MATLAB?
I think here is what you need: function dragpoints(xData,yData,xLower,xUpper,yLower,yUpper) figure; x = xData; y = yData; ...
2年以上 前 | 1
回答済み
I have trained my neural network now I want to test it .I have left some some data only for testing it is not used in train .how I could test my model using untrained data
You can use yfit = predict(Mdl,X); Where Mdl is your trained neural network, and X will be your test datasets. See an exampl...
I have trained my neural network now I want to test it .I have left some some data only for testing it is not used in train .how I could test my model using untrained data
You can use yfit = predict(Mdl,X); Where Mdl is your trained neural network, and X will be your test datasets. See an exampl...
2年以上 前 | 0
| 採用済み
回答済み
I have 3 SST plots which I wish to put side-by-side in 1 figure in the form of a 1x3 panel. How do I go about this? I have attached my plots and the code.
You may use following command to place different plots in a single figure at custom location: % in your case, m = 1, n = 3 % ...
I have 3 SST plots which I wish to put side-by-side in 1 figure in the form of a 1x3 panel. How do I go about this? I have attached my plots and the code.
You may use following command to place different plots in a single figure at custom location: % in your case, m = 1, n = 3 % ...
2年以上 前 | 0
回答済み
How to build this circuit sinusoidal state at Matlab simulink and run it? I got problem to run it
You may refer to following documentation to build and run an electric circuit: https://in.mathworks.com/help/physmod/sps/powers...
How to build this circuit sinusoidal state at Matlab simulink and run it? I got problem to run it
You may refer to following documentation to build and run an electric circuit: https://in.mathworks.com/help/physmod/sps/powers...
2年以上 前 | 0
回答済み
how can i convert from one value to multi values
You want to calculate that function at different values of alpha, it can done using arrayfun (func, arr); Read the documentat...
how can i convert from one value to multi values
You want to calculate that function at different values of alpha, it can done using arrayfun (func, arr); Read the documentat...
2年以上 前 | 1
回答済み
Best practices for converting MATLAB code to fixed point
Here are the links to follow for best practice for converting MATLAB code into fixed point: https://in.mathworks.com/videos/bes...
Best practices for converting MATLAB code to fixed point
Here are the links to follow for best practice for converting MATLAB code into fixed point: https://in.mathworks.com/videos/bes...
2年以上 前 | 0
回答済み
Floating point to Fixed point
To note the workflow for converting MATLAB function blocks into fixed point follow the documentation below: https://in.mathwork...
Floating point to Fixed point
To note the workflow for converting MATLAB function blocks into fixed point follow the documentation below: https://in.mathwork...
2年以上 前 | 0
回答済み
what is floating point model
These should answer your query about floating point and fixed point models: https://in.mathworks.com/matlabcentral/answers/4968...
what is floating point model
These should answer your query about floating point and fixed point models: https://in.mathworks.com/matlabcentral/answers/4968...
2年以上 前 | 0
回答済み
Fixed-Point Tool Simulink
To convert different subsystems into fixed point by using fixed point tool, you need to manually right click that particular sub...
Fixed-Point Tool Simulink
To convert different subsystems into fixed point by using fixed point tool, you need to manually right click that particular sub...
2年以上 前 | 0
回答済み
help required for fixed point conversion
The problem of getting all the output as zeros could potentially be related to the proposed data type settings which results in ...
help required for fixed point conversion
The problem of getting all the output as zeros could potentially be related to the proposed data type settings which results in ...
2年以上 前 | 0
回答済み
how to find x using Newton Raphson in matlab
% give initial guess x(1)=initial_guess; % specify number of iterations num_itr = 5; for i=1:length(num_itr) f(i)=8*e^-...
how to find x using Newton Raphson in matlab
% give initial guess x(1)=initial_guess; % specify number of iterations num_itr = 5; for i=1:length(num_itr) f(i)=8*e^-...
2年以上 前 | 0