Community Profile

photo

Suman Saha


Last seen: 約1年 前 2013 年からアクティブ

Followers: 0   Following: 0

連絡

Electr & Comm Engg

統計

All
  • 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...

10年以上 前 | 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...

10年以上 前 | 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; ...

10年以上 前 | 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...

10年以上 前 | 0

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

10年以上 前 | 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...

10年以上 前 | 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])

10年以上 前 | 0