photo

Suman Saha


Last seen: 12 months ago Active since 2013

Followers: 0   Following: 0

Message

Electr & Comm Engg

Statistics

All
MATLAB Answers

0 Questions
7 Answers

File Exchange

4 Files

Cody

19 Problems
406 Solutions

RANK
273,502
of 300,343

REPUTATION
0

CONTRIBUTIONS
0 Questions
7 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
7,172 of 20,926

REPUTATION
143

AVERAGE RATING
4.00

CONTRIBUTIONS
4 Files

DOWNLOADS
5

ALL TIME DOWNLOADS
1398

RANK
438
of 168,172

CONTRIBUTIONS
19 Problems
406 Solutions

SCORE
3,995

NUMBER OF BADGES
10

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Revival Level 1
  • First Answer
  • Famous
  • Likeable
  • First Submission
  • Quiz Master
  • Puzzler
  • Leader
  • Speed Demon
  • Commenter
  • Promoter
  • Creator

View badges

Feeds

View by

Answered
How to Put Data into table?
clear all;clc;close all figure('Name','Di') for i=1:4 prompt =reshape(1:i*i,i,i); pause(1) t= uitable(); set(t,'Data',pr...

12 years ago | 0

Answered
how to print output in gui
figure('Name','Di') prompt = {4 5 5 1 3}; uicontrol('Style','text','unit','inches','position',[1 1 1 1],'String',sum(cell2...

12 years ago | 0

Answered
How to get a non integer value from uicomponent slider (Jslider) in Matlab?
function [] = ANALOGCOMM(action) if nargin<1, action='initialize'; end; if strcmp(action,'initialize') close all; ...

12 years ago | 0

Answered
Having picture appear on GUI
%%%THIS IS AN GUI FUNCTION YOU CAN GET SO MANY TYPES OF BUTTONS AND THE USE %%%OF POPUP BUTTONS: 'HOW TO ASSOCIATE WITH DIFFEREN...

12 years ago | 0

Answered
Reading Text File As Numbers
function SCORE2(action) if nargin<1 action='initialize'; end; if strcmp(action,'initialize') close all;clc; figNum...

12 years ago | 0

Answered
Problems with executing a .m file inside a push callback
function SCORE3(action) if nargin<1 action='initialize'; end; if strcmp(action,'initialize') close all;cl...

12 years ago | 0

Answered
aligning text in plots
clear all;clc;close all; x=1:10;y=1:10; plot(x,y,'ro') text([1:10]-1.5,[1:10]+1,'Point X') axis([-1 12 -1 12])

12 years ago | 0