Community Profile

photo

Nikhil Sapre

Last seen: 3 days ago|Active since 2021

Statistics

  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer

View badges

Content Feed

View by

Answered
Multiple Figures to PDF's
版本2021b现在支持使用

8 months ago | 0

Answered
Title Page in Matlab Generated Pdf
版本2021b现在支持使用

8 months ago | 0

Answered
Is it possible to print two consecutive figures to the same PDF document?
Release 2021b now supports exporting to a multipage pdf using the

8 months ago | 0

Answered
Is it possible to join pdf files with MATLAB?
Release 2021b now supports exporting to a multipage pdf using the

8 months ago | 1

Answered
将图放入多页PDF文档中
Release 2021b now supports exporting to a multipage pdf using the

8 months ago | 0

Answered
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

Answered
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

|accepted

Answered
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

|accepted

Answered
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)...

1年前| 1

Answered
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...

1年前| 0

|accepted

Answered
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...

1年前| 0

|accepted

Answered
.txt to matrix separated by blank lines
Hi Alyse, Can you try something similar to this? FileList = dir('*.txt'); [~,idx] = sort([FileList.datenum]); FileData = [];...

1年前| 0

Answered
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 ...

1年前| 0

|accepted

Answered
function error (GUIDE)
嗨,克里斯汀(Kristin),根据您发布的代码段,我看到功能块没有结束。因此,错误。她...

1年前| 0

|accepted