photo

Suman Saha


Last seen: 10 months 前 自 2013 起处于活动状态

Followers: 0   Following: 0

消息

Electr & Comm Engg

统计学

All
MATLAB Answers

0 个提问
7 个回答

File Exchange

4 文件

Cody

19 个问题
406 个答案

排名
281,029
of 299,916

声誉
0

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
0

排名
7,163 of 20,840

声誉
143

平均
4.00

贡献数
4 文件

下载次数
5

ALL TIME 下载次数
1397

排名
429
of 166,562

贡献数
19 个问题
406 个答案

评分
3,995

徽章数量
10

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

查看徽章

Feeds

排序方式:

已回答
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 前 | 0

已回答
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 前 | 0

已回答
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 前 | 0

已回答
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 前 | 0

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

12 years 前 | 0

已回答
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 前 | 0

已回答
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 前 | 0