Nikhil Sapre
Statistics
MATLAB Answers
0 質問
17 回答
ランク
of 125,674
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Content Feed
回答済み
Simulation of a rolling disk on a flat surface
What code have you tried? Can you post it here? We can answer specific questions about your code.
Simulation of a rolling disk on a flat surface
What code have you tried? Can you post it here? We can answer specific questions about your code.
18日 前 | 0
回答済み
How can I plot following graph using the given data?
This looks like a homework querstion. You need to try learning MATLAB imporitng data and plotting function and ask specific ques...
How can I plot following graph using the given data?
This looks like a homework querstion. You need to try learning MATLAB imporitng data and plotting function and ask specific ques...
2ヶ月 前 | 0
回答済み
plot a smooth curve
You can use the curveFitter app. Curve Fitting - MATLAB & Simulink (mathworks.com)
plot a smooth curve
You can use the curveFitter app. Curve Fitting - MATLAB & Simulink (mathworks.com)
2ヶ月 前 | 0
回答済み
Multiple Figures to PDF's
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.html...
Multiple Figures to PDF's
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.html...
1年以上 前 | 0
| 採用済み
回答済み
Title Page in Matlab Generated Pdf
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.html...
Title Page in Matlab Generated Pdf
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.html...
1年以上 前 | 0
回答済み
Is it possible to print two consecutive figures to the same PDF document?
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.htm...
Is it possible to print two consecutive figures to the same PDF document?
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.htm...
1年以上 前 | 0
回答済み
Is it possible to join pdf files with MATLAB?
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.htm...
Is it possible to join pdf files with MATLAB?
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.htm...
1年以上 前 | 1
回答済み
Placing plots into multiple page pdf document
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.htm...
Placing plots into multiple page pdf document
Release 2021b now supports exporting to a multipage pdf using the <https://www.mathworks.com/help/matlab/ref/exportgraphics.htm...
1年以上 前 | 0
回答済み
Using a loop to export UIAxes
CurrentAxes in your code is a string. The first argument to exportgraphics should be a figure or axes handle. Try this code ...
Using a loop to export UIAxes
CurrentAxes in your code is a string. The first argument to exportgraphics should be a figure or axes handle. Try this code ...
1年以上 前 | 0
回答済み
How to extract the 1 to 4 row and skip 5&6 and continuse 7 and 8 row?
This should work new = [x1(1:4)] new = [new; x1(end-1:end)] Thanks, Nikhil
How to extract the 1 to 4 row and skip 5&6 and continuse 7 and 8 row?
This should work new = [x1(1:4)] new = [new; x1(end-1:end)] Thanks, Nikhil
1年以上 前 | 0
| 採用済み
回答済み
Structfun with multiple inputs
Hi Alec, You can overload the minus function for structures and then return a structure from it. Implement the function below...
Structfun with multiple inputs
Hi Alec, You can overload the minus function for structures and then return a structure from it. Implement the function below...
1年以上 前 | 2
| 採用済み
回答済み
Looking for help on graphing
Hi Caleb, Please find an example of the code below. t = linspace(0,50,51); uSol = zeros(1,length(t)); for i = 1:1:length(t)...
Looking for help on graphing
Hi Caleb, Please find an example of the code below. t = linspace(0,50,51); uSol = zeros(1,length(t)); for i = 1:1:length(t)...
2年弱 前 | 1
回答済み
How can I combine multiple matfile containing row vector in one table
Hi Yared, Can you check if the order is correct in the variable FileList. My guess is the problem happens because the sorted o...
How can I combine multiple matfile containing row vector in one table
Hi Yared, Can you check if the order is correct in the variable FileList. My guess is the problem happens because the sorted o...
2年弱 前 | 0
| 採用済み
回答済み
Same scaling of colormap in a multipanel spatial plot
Hi Swarendu, You can find the min and maximum values to each of your data sets. Then use the values to set the ColorLimits pro...
Same scaling of colormap in a multipanel spatial plot
Hi Swarendu, You can find the min and maximum values to each of your data sets. Then use the values to set the ColorLimits pro...
2年弱 前 | 0
| 採用済み
回答済み
.txt to matrix separated by blank lines
Hi Alyse, Can you try something similar to this? FileList = dir('*.txt'); [~,idx] = sort([FileList.datenum]); FileData = [];...
.txt to matrix separated by blank lines
Hi Alyse, Can you try something similar to this? FileList = dir('*.txt'); [~,idx] = sort([FileList.datenum]); FileData = [];...
2年弱 前 | 0
回答済み
Exporting only the plot legend to a jpg file
Hi Joe, You can try something like this to turn of visibility of your plots, and axis object. This will export only the Legend ...
Exporting only the plot legend to a jpg file
Hi Joe, You can try something like this to turn of visibility of your plots, and axis object. This will export only the Legend ...
2年弱 前 | 0
| 採用済み
回答済み
function error (GUIDE)
Hi Kristin, Based on the snippet of code you posted, I see that the function blocks don't have an end. Hence the errors. Her...
function error (GUIDE)
Hi Kristin, Based on the snippet of code you posted, I see that the function blocks don't have an end. Hence the errors. Her...
2年弱 前 | 0
| 採用済み