Ankitkumar Patel
Followers: 0 Following: 0
Statistics
8 Questions
0 Answers
RANK
161,998
of 296,198
REPUTATION
0
CONTRIBUTIONS
8 Questions
0 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 20,362
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 155,631
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How can I replace white color with some other color while keep using cbarf for values less than cutoff mark?
data = rescale(peaks,0,600); newTickVals = [ 100 300 350 450]; limits=[newTickVals(1) newTickVals(end)]; x=1:1:49;z=ones(...
1 year ago | 1 answer | 0
1
answerQuestion
How can I make sure that cbarf (colorbar) will not overlap on second y-axis label?
% Create a data sets data = rescale(peaks,0,600); data1 = rescale(peaks,0,700); newTickVals = [3 25 300 350 450]; limits...
1 year ago | 1 answer | 0
1
answerQuestion
figure position with "tiledlayout" function.
tiledlayout(2,2); [X,Y,Z] = peaks(20); % Tile 1 nexttile surf(X,Y,Z) % Tile 2 nexttile contour(X,Y,Z) % Tile 3 ne...
1 year ago | 1 answer | 0
1
answerQuestion
Only one colorbar for subplots while plotting in a for loop.
x = 1:10; y = x'; z1 = repmat(x,10,1); z(:,:,1)=z1;z(:,:,2)=z1; % this only sets the mapping and colorbar colorbarrange = [...
1 year ago | 2 answers | 0
2
answersQuestion
How to match colorbar and countourf plot manually?
clear all; close all; x=1:10;x=double(x) y=x';y=double(y) z=repmat(x,10,1) maxColorLimit=12 minColorLimit=0 l=maxColorL...
1 year ago | 2 answers | 0
2
answersQuestion
concat/horzcat for cell with data cells of a*b*c sizes
Read variables from files ncvars={'a','b'}; % variables need from files ncvar{1}=a, ncvars{2}=b prjdir=[datadir 'mentioned pat...
2 years ago | 1 answer | 0
1
answerQuestion
How to increase font size and remove extra space in prompt window/listdlg ?
list = {'1','2','3'}; [indx]=listdlg('PromptString',{'Select Number.',... ''},... 'SelectionMode','single','ListStr...
2 years ago | 1 answer | 0
1
answerQuestion
Assigned small array values into Big array using for loops
Size(per)=1*(multiple of 180) double; e.g. 1*720 Size(temp)=180*1 double as of 720/180=4; My goal is to assign temp values...
3 years ago | 1 answer | 0